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

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

841. Sprite-切换纹理 [ 71%]

...ipt、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var texture1 = "../../res/apes/monkey2.png"; var textu...

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

842. 【官网代码】加载dom音频报错,怎么回事? [ 71%]

...rivate var analyser:Object;private var audioBufferSourceNode:Object;public function Main(){Laya.init(500,500);AudioContext =Browser.window.AudioContext || Browser.window.webkitAudioContext;audioContext = new AudioContext();analyser = audioContext.createAnalyser();analyser.fftSize = 256;Laya.stage.on...

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

843. 鼠标交互-拖动 [ 71%]

...ipt、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Event = Laya.Event; var Rectangle = Laya.Rectangle; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL...

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

844. Texture内存回收(ActionScript-2D进阶篇(AS3)-性能优化) [ 71%]

...gl.WebGL; public class ClearTextureResTest { private var sp:Sprite; public function ClearTextureResTest() { WebGL.enable(); Laya.init(1000, 800); //显示一个图片 sp = Sprite.fromImage("res/bg.jpg"); Laya.stage.addChild(sp); //显示一个动画 var ani:Animation = new Animation(); ani.loadAtlas...

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

845. Texture内存回收(ActionScript-2D进阶篇(AS3)-性能优化) [ 71%]

...gl.WebGL; public class ClearTextureResTest { private var sp:Sprite; public function ClearTextureResTest() { WebGL.enable(); Laya.init(1000, 800); //显示一个图片 sp = Sprite.fromImage("res/bg.jpg"); Laya.stage.addChild(sp); //显示一个动画 var ani:Animation = new Animation(); ani.loadAtlas...

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

846. 改变位置后,点击区域不生效了 [ 71%]

...a.events.Event; import laya.renders.Render; public class MoveTest { public function MoveTest() { Laya.init(600,600); var sp:Sprite = new Sprite(); sp.autoSize=true; sp.graphics.drawRect(0,0,100,100,"#ff0000"); sp.on(Event.CLICK,this,onClick); Laya.stage.addChild(sp); } private function onClick(event...

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

847. 特效LOADED监听不到 [ 71%]

...OADED监听不到 能给具体点吗新手 ani.once(Laya.Event.LOADED,null,function(ani1){ console.log(ani1.getGraphicBounds()); }); 这样写的话监听不到 现在引擎支持下载功能吗??? 2017-06-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...

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

848. Sprite-遮罩-放大镜 [ 71%]

...ipt、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var maskSp; var bg2; (function() { // 不支持WebGL时自动切换至Canvas Laya....

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

849. LayaFlash针对资源的加载是同步还是异步? [ 71%]

...nt; import flash.net.URLRequest; public class Main extends Sprite { public function Main():void { if (stage) init(); else addEventListener(Event.ADDED_TO_STAGE, init); } private function init(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); this.stage.scaleMode = StageScaleMod...

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

850. swf转成H5资源显示超出原有范围 [ 71%]

...ies;     public class Main extends Sprite     {         public function Main():void         {             if (stage) init();             else addEventListener(Event.ADDED_TO_STAGE, init);         }                  private function setWindowFullS...

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