• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0073 秒)

1921. 报错:__glsl is not defined,而且bundle.js出现__glsl [ 69%]

...sl is not defined,而且bundle.js出现__glsl  bundle.js开始代码:(function (__glsl) { 'use strict'; __glsl = __glsl && __glsl.hasOwnProperty('default') ? __glsl['default'] : __glsl; bundle.js结束代码: onConfigLoaded() { //加载IDE指定的场景 GameConfig.startScene &&am...

来源: Laya_社区 发布时间: 20200718

1922. WaterPrimaryMaterial的使用 [ 69%]

...     Laya.Texture2D.load("res/water1.png", Laya.Handler.create(null, function(tex:Laya.Texture2D) { // material.albedoTexture = tex; material.mainTexture = tex; })); Laya.Texture2D.load("res/FoamTexture.jpg", Laya.Handler.create(null, function(tex:Laya.Texture2D) { // material.albedoTexture = t...

来源: Laya_社区 发布时间: 20181030

1923. 在Unity中设置动画事件(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 69%]

...Scene_AnimationEvent/Conventional/layaScene.ls", Laya.Handler.create(this, function(scene) { Laya.stage.addChild(scene); //获取cube对象 var cube = scene.getChildByName("Cube") as Laya.Sprite3D; //添加组件(脚本) var _script = cube.addComponent(SceneScript) as SceneScript; //label用于显...

来源: Laya2.0_文档 发布时间: 20210715

1924. 微信飞机大战中“开始页面”逻辑功能关于js继承问题 [ 69%]

...JS要怎么写呢,我只能写到以下这一步,然后就没方向了(function(){ // Laya.class(ui.GameStartUI,"GameStart"); /***游戏开始界面***/ function GameStart(){ //游戏加载未完成暂时不显示,防止点击出错 this.btn_start.visible=false; //监听界面是否关闭 this...

来源: Laya_社区 发布时间: 20171123

1925. 微信小游戏编译报错 [ 69%]

...11:56:05 WAGame.js:4 gameThirdScriptError document.createTextNode is not a function TypeError: document.createTextNode is not a function at u (http://127.0.0.1:23181/game/code.js:10:31792) at s (http://127.0.0.1:23181/game/code.js:10:31291) at n (http://127.0.0.1:23181/game/code.js:10:30084) at e.ex...

来源: Laya_社区 发布时间: 20180613

1926. 在Unity中导出拖尾系统(ActionScript-3D基础(AS3)-LayaAir3D之拖尾系统) [ 69%]

... Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Handler.create(this,function(sp:Sprite3D):void{ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果 Laya.timer.frameLoop(1,this,function():void{ //使用差速来体现移...

来源: Laya2.0_文档 发布时间: 20210715

1927. 分享 修复webaudiosound 循环播放的声音 俩个失声问题 [ 69%]

... = Laya.WebAudioSoundChannel.prototype; /** *播放声音 */ _proto.play = function () { // if (this.url.indexOf("music.d") != -1) { // console.log("play", this.url) // console.trace("play", this.url) // } Laya.SoundManager.addChannel(this); this.isStopped = false; this._clearBufferSource(); if (!th...

来源: Laya_社区 发布时间: 20201014

1928. Uncaught TypeError: Cannot read property 'XXX' of undefined [ 69%]

...r: Cannot read property 'XXX' of undefined private var spe:Sprite; private function showApe():void {             spe = new Sprite();             spe.mouseEnabled = true;             spe.x = 100;             spe.y = 100;             spe.width = 512;    ...

来源: Laya_社区 发布时间: 20170407

1929. 解析JSON格式的数据 [ 69%]

...这么写吗?字符串我无法输出,不知道是不是load写错了 function initJson() { var fileURL="json/ENDLESS_TABLE.json"; var strJson=Laya.loader.load(fileURL,Handler.create(this,readJsonFinish),null,Loader.JSON); function readJsonFinish() { console.log(strJson); var contact =...

来源: Laya_社区 发布时间: 20151110

1930. 保存数据的数组在回调的时候变为undifine [ 69%]

...时候回调的时候面板中保存数据的数组变为undifine public function update():void { Utils.removeAll(panelHeroInfo); var heros:Array = GameMain.mainModel.heros.Heros; //获取 MainModel里的武将信息 var leng:int = heros.length; var item:HeroResolveItem; var heroInfo:SHeroInfo; for ...

来源: Laya_社区 发布时间: 20170321