大约有 94 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
...eDemo.js,代码编写如下: ```javascript //初始化舞台 Laya.init(1334,750); //创建一个Skeleton对象 var skeleton = new Laya.Skeleton(); //添加到舞台 Laya.stage.addChild(skeleton); skeleton.pos(600,700); //通过加载直接创建动画 skeleton.load("res/spine/spineboy/spineboy.s...
来源: Laya2.0_文档 发布时间: 20210715
...o() { //初始化引擎,设置宽高并开启WebGL渲染模式 Laya.init(1334,750, WebGL); //设置舞台背景颜色 Laya.stage.bgColor = "#ffffff"; //加载资源成功后,执行onLoaded回调方法 Laya.loader.load(skin, Handler.create(this, onLoaded)); } private function onLoaded():void { //...
来源: Laya2.0_文档 发布时间: 20210715
.../ 程序入口 class GameMain{ constructor() { //初始化引擎 Laya.init(1334,750,Laya.WebGL); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/ui.atlas",Laya.Handler.create(this,this.onLoaded)); } private onLo...
来源: Laya2.0_文档 发布时间: 20210715
...mo.js并设置默认程序,编写代码如下: ```javascript Laya.init(1334, 750,Laya.WebGL); Laya.stage.scaleMode = "full"; Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,onLoaded)); function ...
来源: Laya2.0_文档 发布时间: 20210714
...bits : 150 _boundFrustum : BoundFrustum _canvasHeight : 750 _canvasWidth : 1334 _children : Array(0) _components : Array(1) _conchData : null _farPlane : 100 _fieldOfView : 60 _id : 1 _isStatic : false _layer : 0 _nearPlane : 0.1 _needProcessCollisions : false _needProcessTriggers : false _normalize...
来源: Laya_社区 发布时间: 20181203
...imeLineDemo { public function TimeLineDemo() { //初始化舞台 Laya.init(1334,750, WebGL); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoad回调方法 Laya.loader.load("res/atlas/ui.atlas", Handler.create(this, onLoaded)); } private function onLoaded(...
来源: Laya2.0_文档 发布时间: 20210715
...测试页面**/ private comp:ui.ComponentDemoUI; constructor() { Laya.init(1334,750, Laya.WebGL); Laya.stage.scaleMode = "full"; Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,this.onLoaded)); } pr...
来源: Laya2.0_文档 发布时间: 20210715
...小游戏 Laya.MiniAdpter.init(true, true); //程序入口 Laya.init(750, 1334); onLoaded(); /* //激活资源版本控制 Laya.ResourceVersion.enable("version.json", Laya.Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION); function beginLoad(){ Laya.loader.load("r...
来源: Laya_社区 发布时间: 20180507
...vate var comp:ComponentDemoUI; public function ComponentDemo() { Laya.init(1334,750, WebGL); Laya.stage.scaleMode = "full"; Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("./res/atlas/ui.atlas", Handler.create(this, onLoaded)); } private functio...
来源: Laya2.0_文档 发布时间: 20210715
...o() { //初始化引擎,设置宽高并开启WebGL渲染模式 Laya.init(1334,750, WebGL); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoad回调方法 Laya.loader.load([skin1,skin2], Handler.create(this, onLoaded)); } private function onLoaded():void ...
来源: Laya2.0_文档 发布时间: 20210714