大约有 266 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0076 秒)
...Tab 和 RadioGroup 的基类。 Hierarchy Box UIGroup RadioGroup Tab Index Constructors constructor Properties _extra _ownGraphics _scene _skinBaseUrl _url autoSize hitTestPrior mouseThrough name selectHandler tag drawtocanvCtx Accessors _isHeightSet _isWidthSet active activeInHierarchy alpha anchor...
来源: Laya3.0_api 发布时间: 20231115
...态更改帧率有利于改进手机耗电。 Hierarchy Sprite Stage Index Constructors constructor Properties _extra _ownGraphics _scene _skinBaseUrl _url autoSize canvasDegree canvasRotation designHeight designWidth focus hitTestPrior mouseThrough name renderingEnabled screenAdaptationEnabled tag ...
来源: Laya3.0_api 发布时间: 20231115
...: number = 20 public curpos: Laya.Vector3; private delatpos: Laya.Vector3; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 * 此方法为虚方法,使用时重写覆盖即可 */ onAwake(): void { this.curpos = new...
来源: Laya3.0_文档 发布时间: 20241014
...于只定义类型的需求 @property(String) public text2: string = ""; constructor() { super(); } } @property()是IDE识别组件属性并显示到IDE属性面板上的装饰器标识,类型是装饰器属性标识必须携带的参数。 如果我们不需要给属性写一个tips说明,也...
来源: Laya3.0_文档 发布时间: 20241014
...eInfo.layerindex = layerindex; this.playStateInfo.playState = playstate; } constructor() { super(); } /** * 动画状态开始时执行。 */ onStateEnter(): void { console.log("动画开始播放了"); } /** * 动画状态运行中 * @param normalizeTime 0-1动画播放状态 */ onStateUpdate(norma...
来源: Laya3.0_文档 发布时间: 20241014
...功能。我们写个简单的例子来看下用法: class LayaSample { constructor() { //创建HttpRequest对象 let http: Laya.HttpRequest = new Laya.HttpRequest(); //设置超时时间 http.http.timeout = 10000; //发送了一个简单的请求 http.send("resources/data.txt", "", "get", "text")...
来源: Laya3.0_文档 发布时间: 20241014
...收机制 */ @regClass() export default class Bullet extends Laya.Script { constructor() { super(); } onEnable(): void { //设置初始速度 let rig: Laya.RigidBody = this.owner.getComponent(Laya.RigidBody); rig.setVelocity({ x: 0, y: -10 }); } onTriggerEnter(other: any, self: any, contact: any): v...
来源: Laya3.0_文档 发布时间: 20241014
... set strokeColors(value:String):voidSee alsolaya.display.Text.strokeColor()Constructor DetailUIGroup()Constructorpublic function UIGroup(labels:String = null, skin:String = null) 创建一个新的 Group 类实例。 Parameters labels:String (default = null) — 标签集字符串。以逗号做分...
来源: Laya2.0_api 发布时间: 20190513
...的3D脚本示例 */ export default class TSDemo extends Laya.Script3D { constructor() { super(); } } 2D脚本与3D脚本不要混用,如果是用IDE创建的脚本模板,需要将继承的2D脚本类(Laya.Script)改为3D脚本类(Laya.Script3D), 添加物理脚本 只有为节点添...
来源: Laya3.0_文档 发布时间: 20241014
...。treeSizeproperty public var treeSize:Vector3 四/八叉树的尺寸。Constructor DetailBaseScene()Constructorpublic function BaseScene() 创建一个 BaseScene 实例。 Method Detail_renderDebug()method protected function _renderDebug(gl:WebGLContext, state:RenderState):void Parameters gl:WebG...
来源: laya_api 发布时间: 20170422