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

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

891. sprite 设置为静态变量后,无法从舞台移除 [ 70%]

....webgl.WebGL; public class HtmlDemo { private static var sp:Sprite; public function HtmlDemo() { Laya.init(800, 480,WebGL); Stat.show(); sp=new Sprite(); sp.loadImage("background.jpg"); Laya.stage.addChild(sp); Laya.stage.on(Event.CLICK,this,onClick); function onClick():void { // TODO Auto Generated...

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

892. UI-CheckBox [ 70%]

...ipt、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Stage = Laya.Stage; var CheckBox = Laya.CheckBox; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var COL_AMOUNT = 2; var ROW_AMOUNT = 3; var HORIZONTAL_SPACING = 200; var VERTICAL_SPACING = 100; var X_OF...

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

893. 如何用Tween 给graphics.drawLine 设置缓动 [ 70%]

...te var sp:Sprite; private var endX:Number; private var endY:Number; public function LayaAirDemo() { Laya.init(600,600); sp=new Sprite(); Laya.stage.addChild(sp); endX=0; endY=0; sp.graphics.drawLine(10,10,endX,endY,'#FF0000'); Laya.timer.frameLoop(1,this,onFrameLoop); } private function onFrameLoop(...

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

894. laya.ui.Box [ 70%]

...e addChildren(... args):void 批量增加子节点 Node callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, method:Function):void 清理定时器。功能同Lay...

来源: laya_api 发布时间: 20170929

895. layaAir1.3.1版本SWF组件播放速度异常 [ 70%]

...rt laya.events.Event; public class AAA { private var swf:MovieClip; public function AAA() { Laya.init(550,400); swf=new MovieClip(); swf.load("data.swf"); swf.on(Event.LOADED,this,onLoaded); Laya.stage.addChild(swf); } private function onLoaded():void { // TODO Auto Generated method stub swf.interva...

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

896. laya.d3.webxr.core.WebXRInput_API3.0 [ 70%]

...AxisEvent addAxisEvent(index: number, type: string, caller: any, listener: Function): void Defined in laya/d3/WebXR/core/WebXRInput.ts:164 add axis event Parameters index: number axis索引 type: string 事件类型 caller: any 事件侦听函数的执行域。 listener: Function 事件侦听函数...

来源: Laya3.0_api 发布时间: 20231115

897. 鼠标交互-双指缩放(多点触控) [ 70%]

...ipt、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Event = Laya.Event; var Browser = Laya.Browser; var WebGL = Laya.WebGL; //上次记录的两个触模点之间距离 var lastDistance = 0; var sp; (function()...

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

898. laya.d3.core.scene.VRScene [ 70%]

...新前处理,可重写此函数。 BaseScene clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含 node 节点。 Node customRender(context:RenderContext, x:Number, y:Number):void 自定义更新...

来源: laya_api 发布时间: 20170422

899. Laya有没有将base64字符串转Laya.Byte的方法? [ 70%]

...复 Laya_Aaron 赞同来自: Base64Tool 类 看里面方法 public static function encodeByte(byte:ByteEx, start:int = 0, end:int = -1):String         {             if (end < 0)             {                 end = byte.length;            ...

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

900. 报错:"for each" err,must add{} 怎么解决? [ 70%]

...码中需添加大括号包住for each作用域。 原生例子 :public function ForEachDemo() { var obj:Object = [ { key:1 }, { key:2 } ]; //转成成js时工具会在使用for each的地方添加相应的报错信息: //"for each" err,must add{} for each(var value:Object in obj) trace(value.ke...

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