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

大约有 1,567 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0079 秒)

661. 请问一下,怎么将下面这段AS3代码翻译成LayaAir的API [ 67%]

...play.Sprite; import laya.maths.Matrix; import laya.net.Loader; import laya.resource.Texture; import laya.utils.Handler; public class LayaAirDemo { public function LayaAirDemo() { Laya.init(700,600); Laya.loader.load('res/apes/monkey2.png',Handler.create(this,onLoaded)) } private function onLoaded():...

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

662. 位图切片组件 · LayaAir3.0文档 · LAYABOX [ 67%]

...下资源来自“引擎API使用示例” private buttonSkin: string = "resources/res/ui/button-7.png"; private clipSkin: string = "resources/res/ui/num0-9.png"; private bgSkin: string = "resources/res/ui/coutDown.png"; counter: any; controller: any; currFrame: any; //组件被激活后执行,此...

来源: Laya3.0_文档 发布时间: 20241014

663. 关于loader加载Loader.JSON的一些问题 [ 67%]

...理本地JSON资源时,发现一个奇怪的问题: Laya.loader.load(resUrl, Laya.Handler.create(this, function (res) { //解析题目 log(res);   //放置方块 }), null, Laya.Loader.JSON); }   代码运行到这老是报错,报错原因是有不认识的字符,我想了下,resUrl指向...

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

664. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 66%]

...取宽高: ```javascript var sp:Sprite = new Sprite(); sp.loadImage("res/apes/monkey2.png", 0, 0, 0, 0, Handler.create(this, function() {     console.log(sp.width, sp.height); })); Laya.stage.addChild(sp); ``` ​ loadImage在加载完成的回调函数触发之后才可以正确获...

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

665. 高级应用-闪光 [ 66%]

...haredMaterial; glitterMaterial.diffuseTexture = Laya.Texture2D.load("../../res/threeDimen/layabox.png"); glitterMaterial.albedo = new Laya.Vector4(1.3, 1.3, 1.3, 1); glitterTemplet.lifeTime = 1.3; glitterTemplet.minSegmentDistance = 0.1; glitterTemplet.minInterpDistance = 0.6; glitterTemplet.maxSler...

来源: Laya_示例 发布时间: 20241119

666. 新人求教!!! [ 66%]

... class Main{ //需要切换的图片资源路径 private monkey1:string = "res/img/monkey1.png"; private monkey2:string = "res/img/monkey2.png"; //切换状态 private flag:boolean = false; private img:Laya.Sprite; constructor() {       //初始化引擎       Laya.init(1334,750);      //...

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

667. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 66%]

...ge后获取宽高: ```javascript var sp=new Laya.Sprite(); sp.loadImage("res/apes/monkey2.png",0,0,0,0,Laya.Handler.create(this,function() { console.log(sp.width,sp.height); })); Laya.stage.addChild(sp); ``` loadImage在加载完成的回调函数触发之后才可以正确获取宽高。 1. **直...

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

668. SWF问题,转换了以后我按照示例做了个测试,SWF文件没有显示请帮我看看 [ 66%]

...现SWF文件且没有出现报错提示。 SWF文件和json 文件均放在res/atlas/swf/这个目录里面。     var MovieClip = Laya.MovieClip; (function() { var MC = new MovieClip(); Laya.stage.addChild(MC); MC.load("res/atlas/swf/cesi.swf",true); })(); 附件 : --> cesi.zip 2018-03-30 添加...

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

669. UNITY导出的模型旋转不了 [ 66%]

...reenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); Laya.Scene3D.load('/1/res/SampleScene.ls', Laya.Handler.create(null, function(scene1){ let scene = Laya.stage.addChild(scene1); Laya.Sprite3D.load("/1/res/SampleScene.lh", Laya.Handler.create(null, function(sp) { //let obj = sp; let obj = scene.ad...

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

670. 调试正常但发布后,index.html在浏览器打开出现跨源受限的问题 [ 66%]

... Image from origin 'file://' has been blocked from loading by Cross-Origin Resource Sharing policy: Invalid response. Origin 'null' is therefore not allowed access. laya.core.min.js:6 [warn]Retry to load: E:/laya/layatest/release/layaweb/1.0.0/res/img/image.png index.html:1 Image from origin 'file:/...

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