大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0081 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
...y.Stage; import laya.ui.TextInput; public class TextInput_Example { public function TextInput_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Text_InputSingleline () Text_InputMultiline(); } private function...
来源: Laya2.0_文档 发布时间: 20210715
...态 (true) 还是非活动状态 (false)。 Implementation public function get altKey():BooleancharCodeproperty charCode:Boolean [read-only] 包含按下或释放的键的字符代码值。字符代码值为英文键盘值。 Implementation public function get charCode():Booleanc...
来源: Laya2.0_api 发布时间: 20190513
...3 private var testAnim1:Animation; private var testAnim2:Animation; public function LayaSample() { //初始化引擎 Laya.init(1136, 640,WebGL); trace("ok..."); Laya.stage.on(Event.KEY_DOWN, this, this.onKeydown); } private function onKeydown(event:Event):void { var self:* = this; if(event.keyCode =...
来源: Laya_社区 发布时间: 20180424
...2205 Uncaught TypeError: Cannot read property 'mesh' of undefined at Function._getSprite3DHierarchyInnerUrls (laya.d3.js:32205) at Function._getSprite3DHierarchyInnerUrls (laya.d3.js:32262) at Function._getSprite3DHierarchyInnerUrls (laya.d3.js:32262) at Loader._onHierarchylh...
来源: Laya_社区 发布时间: 20201029
...},3,Laya .Ease.backOut,new Handler(this,this.onEaseComplete),1,null,true); function onEaseComplete(){ console.log("ease complete"); Laya.stage.addChild(letterText); } ``` 以上的代码主要存在三个问题: 1. from()中的duration和delay都是以毫秒为单位,所以3,1想表示3秒,1秒需...
来源: Laya_社区 发布时间: 20180620
...,错误为"Scene: the .lh file root type must be Scene,please use other function to load this file."或"Sprite3D: The .lh file root type must be Sprite3D,please use other function to load this file." 跟了一下,发现__proto.onAsynLoaded这个function接收的参数data在layaIDE中被正确...
来源: Laya_社区 发布时间: 20180222
... ]; Laya.loader.create(resource, Laya.Handler.create(this, onLoadFinish)); function onLoadFinish() { //初始化3D场景 this.scene = Laya.stage.addChild(Laya.Scene.load("../../res/threeDimen/scene/TerrainScene/XunLongShi.ls")); //删除原始资源中包含的默认相机 var camera = this.scene.ge...
来源: Laya_示例 发布时间: 20241127
...ipt var task = qg.loadSubpackage({ subpackage:'subpackageName1', success : function () { console.log("loadSubpackage success" ); }, fail:function(){ console.log("loadSubpackage fail"); }, complete:function() { console.log("loadSubpackage complete"); } }); task.onprogress( callback(res) { console.log...
来源: Laya2.0_文档 发布时间: 20210714
...n.to(sp,{x:500},1000,Ease.backIn,Handler.create(this,onTween1)); } private function onTween1():void { // TODO Auto Generated method stub num++; trace(num); Tween.clearTween(onTween1); Tween.to(sp,{x:100},1000,Ease.backIn,Handler.create(this,onTween2)); } private function onTween2():void { // TODO Au...
来源: Laya_社区 发布时间: 20161011
...t Animator.__proto._parse (/RotateDemo/bin/libs/laya.d3.js:19961:13) at Function.Utils3D._createNodeByJson (/RotateDemo/bin/libs/laya.d3.js:8577:17) at Function.Utils3D._createNodeByJson (/RotateDemo/bin/libs/laya.d3.js:8559:24) at Function.Scene3D._parse (/RotateDemo/bin/libs/laya.d3.js:31...
来源: Laya_社区 发布时间: 20190225