大约有 1,204 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0043 秒)
Laya_社区(690) Laya_示例(137) Laya2.0_文档(123) Laya2.0_示例(116) Laya3.0_文档(59) Laya3.0_api(39) laya_api(29) Laya2.0_api(11)
各位大佬,帮我看看 tiledMap 中获取不到自定义属性 ``` private onkeydown(e: KeyboardEvent): void { // var b = mapLayer.getLayerProperties(0, 44, "isCanPass"); // var tileY = mapLayer.getTileDataByScreenPos(screenX, screenY); // var data = this.tiledMap.getLayerByIndex(3).getTileD...
来源: Laya_社区 发布时间: 20230605
...2.transform.rotate(this.rotation, false); });class BlinnPhong_ReflectMap { private rotation:Laya.Vector3 = new Laya.Vector3(0, 0.01, 0); constructor() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene:...
来源: Laya_示例 发布时间: 20241125
....stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouseEvent); //鼠标yi'dong private onMouseEvent(e: Laya.Event): void { switch (e.type) { case Laya.Event.MOUSE_MOVE: this.drag.x = e.stageX; this.drag.y = e.stageY; console.log(e.stageY, Laya.stage.mouseY, this.dr...
来源: Laya_社区 发布时间: 20230619
...est { constructor() { super(); Laya.timer.frameLoop(1,this,this.update); } private update() { let dt = Laya.timer.delta / 1000; console.log("dt="+dt); } } 附件中图1是在iphone6上面运行打印的信息,图2是在模拟下运行打印的信息。 请问有人碰到过这个问题吗? ...
来源: Laya_社区 发布时间: 20180808
...自: 应该是你没有移除干净,可以参考下以下的销毁方式 private function onDesVideo():void { Laya.timer.clear(this, loop); video.pause(); video.destroy(true); video=null; }小提示:video.pause,1.7.4beta版本h还需要手动暂停,1.7.4beta以后的版本将会将pause加...
来源: Laya_社区 发布时间: 20170509
...交 2 个回复 xyz 赞同来自: 看来还是要自己领取悬赏了。 private static onRequestComplete(hr:Laya.HttpRequest, call:Laya.Handler):void { call.runWith(hr.data); Http._requests.push(hr); } 2019-06-10 0 1 分享 微博 QZONE 微信 1560063291用户 赞同来自: 已解决,联系我 x...
来源: Laya_社区 发布时间: 20190609
...* @param isLoop 是否循环播放 */ private function playDragonBonesAnimation(url:String,dragronX:Number,dragronY:Number,parent:Sprite,isLoop:Boolean):void{ var tem:Templet = new Templet(); var longgu:Skeleton; ...
来源: Laya_社区 发布时间: 20170406
...键帧的长度,有多少资源,就创建多少个动画关键帧 */ private createAniTemplate(name: string, len: number = 8): void { let aniFrames: Array<string> = []; for (let i: number = 0; i < len; i++) { aniFrames.push("resources/UI/role/atlasAni2/139x/" +...
来源: Laya_社区 发布时间: 20230707
...lic class Mod extends EventDispatcher { public function Mod() { super(); } private static var _instance:Mod; public static function get index():Mod { return _instance ||= new Mod(); } public function init():void { Mod.event("aaaa"); } } }监听:Mod.on("aaa",this,onFunciton) 2016-12-19 0 0 分享 ...
来源: Laya_社区 发布时间: 20161218
...aa.json",new Rectangle(0,0,1200,720),Handler.create(this,loadMap_1_OK)); } private function loadMap_1_OK():void{ console.log("地图三加载完成"); } } } 2017-01-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回...
来源: Laya_社区 发布时间: 20170105