大约有 1,204 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0046 秒)
Laya_社区(690) Laya_示例(137) Laya2.0_文档(123) Laya2.0_示例(116) Laya3.0_文档(59) Laya3.0_api(39) laya_api(29) Laya2.0_api(11)
位图字体预加载 private function loadFont():void { var bitmapFont:BitmapFont = new BitmapFont(); bitmapFont.loadFont("../../../../res/bitmapFont/test.fnt",new Handler(this,onFontLoaded, [bitmapFont])); } priva...
来源: Laya_社区 发布时间: 20170629
...3) { laser.alpha *= 0.9; laser.scaleY = laser.alpha; if (laser.alpha = []; private tick: number = 0; private frequency: number = 80; private type: number = 0; constructor() { Laya.init(this.viewWidth, this.viewHeight, WebGL); Laya.stage.screenMode = Stage.SCREEN_HORIZONTAL; Laya.stage.scaleMode = St...
来源: Laya2.0_示例 发布时间: 20241124
...s.uiPanel.RankList.scrollBar.on( Laya.Event.CHANGE, this, this.OnScroll ); private OnScroll() { this.uiPanel.RankList1.scrollBar.value = this.uiPanel.RankList.scrollBar.value; } 2018-05-16 1 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 A...
来源: Laya_社区 发布时间: 20180515
...*/ export default class GameUI extends ui.test.TestSceneUI { private mat1: Laya.BlinnPhongMaterial; private newScene: Laya.Scene3D; private arr: any; constructor() { super(); this.arr = []; this.newScene ...
来源: Laya_社区 发布时间: 20201120
...私有变量 ------------------------------- TS 的权限修饰 public private 只是编译器约束,用TS编译好JS给别人用,都是挂在this或原型上,private 不应该是闭包域里的普通变量么 附件 : --> 2019-02-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20190225
...动画 大神,你好,播放骨骼动画掉帧厉害,怎么优化。 private factory:Laya.Templet; private avatar:Laya.Skeleton; this.factory = new Laya.Templet(); this.factory.on(Laya.Event.COMPLETE, this, this.parseComplete); this.factory.on(Laya.Event.ERROR, this, this.onError); this.factory...
来源: Laya_社区 发布时间: 20170718
...然后绕着这个物体旋转。有相关的方法可以解决吗? private var _rotateC:Vector3 = new Vector3(0, 0.001, 0); private function startRound():void { Laya.timer.frameLoop(1, this, function():void{ camare.tr...
来源: Laya_社区 发布时间: 20170607
...e> 是一个字典型的数据存取类。 */ public class Dictionary { private var _lenght:int = 0; private var _values:Array = []; private var _keys:Array = []; /** * 获取字典的长度。 */ public function get lenght():int { return _lenght; } /** * 获取所有的子元素列表。 */ publ...
来源: Laya_社区 发布时间: 20180619
...考下下面的写法吧: Laya.stage.once(Event.CLICK,this,onClick); } private function onClick():void { trace("aaa"); Laya.stage.off(Event.CLICK,this,onClick); Laya.timer.once(500,this,onLoop); } private function onLoop():void { Laya.stage.once(Event.CLICK,this,onClick); } 2017-06-20 1 0 分享 ...
来源: Laya_社区 发布时间: 20170619
...ublic Methods MethodDefined By __init__(canvas:*, scene:Scene3D):void private Input3D getTouch(index:int):Touch 获取触摸点。 Input3D touchCount():int 获取触摸点个数。 Input3DProperty DetailmultiTouchEnabledpropertymultiTouchEnabled:Boolean 获取是否可以使用多点触...
来源: Laya2.0_api 发布时间: 20190513