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

大约有 1,204 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0046 秒)

451. 位图字体预加载 [ 74%]

位图字体预加载 private function loadFont():void         {             var bitmapFont:BitmapFont = new BitmapFont();             bitmapFont.loadFont("../../../../res/bitmapFont/test.fnt",new Handler(this,onFontLoaded, [bitmapFont]));         }         priva...

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

452. 其他引擎的Demo-Example_23 [ 74%]

...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

453. 在List渲染的时候,在滚动一个list的时候,如何实现另一个list也跟着滚动,并且两个list同时滚动一模一样。 [ 74%]

...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

454. localRotationEulerY旋转位置错误 [ 74%]

...*/ 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

455. TS 如何输出真正的私有变量 [ 74%]

...私有变量 ------------------------------- TS 的权限修饰 public private 只是编译器约束,用TS编译好JS给别人用,都是挂在this或原型上,private 不应该是闭包域里的普通变量么  附件 : --> 2019-02-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...

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

456. 播放骨骼动画 [ 74%]

...动画 大神,你好,播放骨骼动画掉帧厉害,怎么优化。 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

457. 摄像机旋转问题 [ 74%]

...然后绕着这个物体旋转。有相关的方法可以解决吗?   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

458. 给Dictionary添加个长度 [ 74%]

...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

459. 点击过快问题 [ 74%]

...考下下面的写法吧: 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

460. laya.d3.Input3D [ 74%]

...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