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

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

761. 怎么实现同一个工程内分包? [ 74%]

...s.Event; import login.LoginView; 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_社区 发布时间: 20151103

762. JSONP跨域读取数据(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 73%]

... ```javascript var http = require("http"); var sever = http.createServer(function(req,res){ res.end("LayaSample.onComplete()"); }); sever.listen(9090) ``` ```javascript res.end("LayaSample.onComplete()"); ``` 这句话的意思是服务器回传给客户端LayaSample.onComplete()并且执行这个...

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

763. laya.d3.webxr.core.AxiGamepad_API3.0 [ 73%]

...则值为 true;否则,值为 false。 off off(type: string, listener: Function): EventDispatcher off(type: string, caller: any, listener?: Function, args?: any[]): EventDispatcher Inherited from EventDispatcher.off Defined in laya/events/EventDispatcher.ts:112 从 EventDispatcher 对象中删除...

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

764. LayaAir能做RPG吗?不要问我能不能,因为我已经在做 - 杀意来袭 [ 73%]

...seEnabled = true; a.mouseThrough = true; a.on(Laya.Event.MOUSE_DOWN, null, function (e: Laya.Event): void {     console.log("touch a"); } 因为需要将mouseThrough=true才可以,蛋疼的api描叙你能相信是这个熟悉么? “mouseThrough : Boolean = false,指定当mouseEnabled=true...

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

765. laya.device.motion.Gyroscope_API3.0 [ 73%]

...勿调用构造函数。 listen()的回调处理器接受两个参数: function onOrientationChange(absolute:Boolean, info:RotationInfo):void absolute: 指示设备是否可以提供绝对方位数据(指向地球坐标系),或者设备决定的任意坐标系。关于坐标系参见https://...

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

766. LayaFlash把socket转成webSocket后监听不到connect事件(已解决) [ 73%]

... {         public var s:Socket;                  public function TestWebSocket()         {             s = new Socket();                          var x:XML = new XML();                           s.addEventListener(Event.CONNECT,c...

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

767. 多个button如何区分 [ 73%]

...    .......      btn.on(Event.CLICK,this,onMouse,['btn'+i]) } public function onMouse(aa):void {       if(aa=='btn001')      {      }       else if(aa=='btn002')     {      } } 2017-04-25 1 2 分享 微博 QZONE 微信 189*****192 赞同来自: 已接近!! 2017-04-25 0 4 ...

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

768. 分享:Graphics下cmds命令流的使用! [ 73%]

....utils.Handler; import laya.webgl.WebGL; public class GraCmdsDemo { public function GraCmdsDemo() { //初始化舞台 Laya.init(Browser.width,Browser.height,WebGL); //预加载资源 Laya.loader.load(['apes/monkey0.png','apes/monkey1.png','apes/monkey2.png','apes/monkey3.png'],Handler.create(this,on...

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

769. socket大型项目回调 [ 73%]

...hakeCallback:any = null; private handshakeBuffer:any; private initCallback:Function = null; private _callbacks:any = {}; private reqId:number = 0; private _package:IPackage; private _message:IMessage; constructor(){ if(!console.group){ console.group = console.log; console.groupEnd = function(){conso...

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

770. laya.utils.Timer_API3.0 [ 73%]

...毫秒。 Returns number Methods callLater callLater(caller: any, method: Function, args?: any[]): void Defined in laya/utils/Timer.ts:278 延迟执行。 Parameters caller: any 执行域(this)。 method: Function 定时器回调函数。 Default value args: any[] = null 回调参数。 Returns void...

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