大约有 179 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0084 秒)
...ckBox_Example { public function CheckBox_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load("resource/ui/check.png", Handler.create(this,onLoadComplete));//加载资源。 } private function onLoadComplete():...
来源: Laya3.0_api 发布时间: 20231115
...如果节点需要加载相关的皮肤,但放在不同域,这里可以设置 Optional _url _url: string Inherited from Node._url Defined in laya/display/Node.ts:57 autoSize autoSize: boolean = false Inherited from AnimationBase.autoSize Defined in laya/display/Sprite.ts:258 指定是否自动...
来源: Laya3.0_api 发布时间: 20231102
...。 水材质(WaterPrimaryMaterial)比较容易理解,是一种可以设置水面反射与波纹等具有水特性属性的材质。如下图所示: ![图](img/9-5.png) #### 五、纹理、贴图、面片 纹理是指物体表面的外观效果,表现为2D位图形式。下图为3D地球...
来源: Laya2.0_文档 发布时间: 20210714
...s "laya/ui/ScaleBox" ScaleBox Class ScaleBox 自适应缩放容器,容器设置大小后,容器大小始终保持stage大小,子内容按照原始最小宽高比缩放 Hierarchy Box ScaleBox Index Constructors constructor Properties _extra _ownGraphics _scene _skinBaseUrl _url autoSize hitTest...
来源: Laya3.0_api 发布时间: 20231115
...nput_Example { public function TextInput_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/input.png"], Handler.create(this, onLoadComplete));//加载资源。 } private function...
来源: Laya3.0_api 发布时间: 20231115
...tArea_Example { public function TextArea_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/input.png"], Handler.create(this, onLoadComplete));//加载资源。 } private function onLoadComplete...
来源: Laya3.0_api 发布时间: 20231115
...如果节点需要加载相关的皮肤,但放在不同域,这里可以设置 Optional _url _url: string Implementation of ISelect._url Inherited from Node._url Defined in laya/display/Node.ts:55 autoSize autoSize: boolean = false Implementation of ISelect.autoSize Inherited from Text.autoSize D...
来源: Laya3.0_api 发布时间: 20231115
...解的也没关系,在本文中还会有相关的介绍。 ##### 3.1.5 设置 Setting 设置项,当前只有一个可配置功能,就是插件的语言(Language),默认是中文,如下图所示。 ![img](img/3.1-8.png) 习惯了英文界面的开发者,可以在这里配置成为Engl...
来源: Laya2.0_文档 发布时间: 20210714
...yer.x, this.player.y)){ //人物如果踩到地板了 就把人物的坐标设置到地板上面 this.player.y = floor.y; //如果到地板上面的 就得重置跳的方法 this.player.jumpReset(); } } } //点击 出发人物 跳跃 _proto.onMouseDown = function(){ this.player.jump(); } _proto.onMo...
来源: Laya_社区 发布时间: 20160803