大约有 1,309 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0056 秒)
Laya_社区(1120) Laya2.0_文档(69) Laya3.0_文档(50) Laya2.0_示例(27) Laya_示例(24) Laya3.0_api(17) laya_api(1) Laya2.0_api(1)
...plet.loadAni("res/spine/goblins/goblins.sk"); function onError() { console.log("parse error"); } function parseComplete() { //创建第一个动画 var skeleton0; //从动画模板创建动画播放对象 skeleton0=templet.buildArmature(0); skeleton0.pos(200,700); //切换动画皮肤 skeleton0.show...
来源: Laya2.0_文档 发布时间: 20210715
... if (json.type!=="Scene"){ if (url == "scene/Demo_Interiors.ls"){ console.log(data[0]); throw new Error("Scene: the .lh file root type must be Scene,please use other function to load this file."); } } var innerResouMap=data[1]; Utils3D._createNodeByJson(this,json,this,i...
来源: Laya_社区 发布时间: 20180101
...Select); Laya.stage.addChild(tab); return tab; } onSelect(index) { console.log("当前选择的标签页索引为 " + index); } } new UI_Tab();module laya { import Stage = Laya.Stage; import Tab = Laya.Tab; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_Tab { private skins...
来源: Laya2.0_示例 发布时间: 20241126
...=Laya.Stage; var WebGL=Laya.WebGL; var config=Config; (function(){ console.log("运行程序。"); Laya.init(1280,720,WebGL); //设置适配模式 Laya.stage.alignH=Stage.ALIGN_CENTER; Laya.stage.alignV=Stage.ALIGN_MIDDLE; Laya.stage.scaleMode="showall"; Laya.Stat.show(); //设置屏幕为横屏 Lay...
来源: Laya_社区 发布时间: 20171207
...t); if (this.bitmap.referenceCount===0){ this.bitmap.destroy(); // console.log("texture2d destory"); } this.bitmap=null; } if (this.url && this===Laya.loader.getRes(this.url)) Laya.loader.clearRes(this.url); } }增加的代码是 if (this.bitmap.referenceCount===0){ this.bitmap.destroy(); /...
来源: Laya_社区 发布时间: 20190320
..., onChange); Laya.stage.addChild(vs); } function onChange(value) { console.log("滑块的位置:" + value); } })();module laya { import Stage = Laya.Stage; import HSlider = Laya.HSlider; import VSlider = Laya.VSlider; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_Slider...
来源: Laya_示例 发布时间: 20241126
...aya.webgl.js:374 >>>>altas garbageCollection =1 一直报以上log,一段时间后,好像整个页面奔溃了,卡滞了 代码类似下面这样 Laya.timer.loop(200, this, showframe); function showframe() { var url = getimage(); this.sp_video.loadImage(url); }...
来源: Laya_社区 发布时间: 20170825
...rHeight; var width:int = Browser.window.innerWidth; Browser.window.console.log("Console Log:浏览器高:"+ Height + " 浏览器宽:" + width); } } } ``` **方式二:** ```java package { public class JSDemo { public function JSDemo() { //初始化引擎 Laya.init(0, 0); var BrowserInfo:Strin...
来源: Laya2.0_文档 发布时间: 20210715
...{ type : Laya.Scene3D } ) private scene: Laya.Scene3D; onStart() { console.log("Game start"); //加载预制体文件 Laya.loader.load("resources/Prefab.lh").then( (res)=>{ //创建预制体 let monkey: Laya.Sprite3D = res.create(); //添加预制体到场景中 this.scene.addChild( monkey ); mon...
来源: Laya3.0_文档 发布时间: 20241014
...ngeHandler = new Handler(this, this.onChange); } onChange(value) { console.log("滑块的位置:" + value); } } new UI_Slider();module laya { import Stage = Laya.Stage; import HSlider = Laya.HSlider; import VSlider = Laya.VSlider; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export cl...
来源: Laya2.0_示例 发布时间: 20241126