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

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

441. LayaFlash针对资源的加载是同步还是异步? [ 76%]

... { 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 = StageScaleMode.NO_SCALE; this.stage.align = StageAlign.TOP_LEFT; IFlash.setSize(1000, 600); //2D项目中设...

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

442. 灯光-聚光 [ 75%]

..., _direction); spotLight.direction = _direction; }); class SpotLightDemo { private scene: Laya.Scene; private _quaternion: Laya.Quaternion; private _position: Laya.Vector3; constructor() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREE...

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

443. 飞机游戏黑屏 [ 75%]

...回复 Laya_XS 赞同来自: 在Main.as类里,你多写了一个括号:private var hero:Role();改成private var hero:Role; 2017-03-19 0 0 分享 微博 QZONE 微信 liangfeng0526 赞同来自: 非常感谢。 2017-03-19 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该...

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

444. 分享:避免鼠标快速移动,mouseout和mouseover触发顺序不一致的问题! [ 75%]

...个问题,可以参考以下方式 */ public class MouseOver_mouseOut { private var arr:Array;//用于存储处于over状态的显示对象 public function MouseOver_mouseOut() { Laya.init(600,400); Laya.stage.bgColor='#EEFFCC'; arr=; var sp1:Sprite=new Sprite(); sp1.autoSize=true; sp1.name='sp1';...

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

445. 3D模型旋转问题,鼠标移动之后,根据按下移动的X坐标差值判断左右旋转,但是会越转越快,请问是什么问题? [ 75%]

...值判断左右旋转,但是会越转越快,请问是什么问题? private mouseMove(state: Laya.RenderState):void{ // console.log(mX + "移动"); // console.log(this.lastMouseX + "按下"); let mX:number = Laya.stage.mouseX; let mY:number = Laya.stage.mouseY; let vec:Laya.Vector3 ; if(this.is...

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

446. 请问laya的List除了用selectBox,还有什么方式可以自定义列表项选中状态下的表现吗 [ 75%]

...uixueying 赞同来自: 可以参考下:把img换成你的字体即可!private function setUp():void { for(var i:int=0;i<10;i++) { data.push({img:"res/ui/"+i+".png",isSelect:false}); } my_list.array=data; my_list.selectEnable=true; my_list.selectHandler=new Handler(this,onSlectHandler); my_li...

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

447. 导航标签组组件 · LayaAir3.0文档 · LAYABOX [ 75%]

...Tab extends Laya.Script { // 图片资源来自“引擎API使用示例” private skins: any[] = ["resources/res/ui/tab1.png", "resources/res/ui/tab2.png"]; constructor() { super(); } // 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): v...

来源: Laya3.0_文档 发布时间: 20241014

448. 其他引擎的Demo-Example_23 [ 75%]

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

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

449. Laya 绑定显示内容到骨骼动画 [ 75%]

...动画   export default class BindSkeleton extends Laya.Skeleton { private __bindList:BindSource[]; constructor(){ super(); this.__bindList=[]; }  /** * 绑定 * @param source */ bind(source:BindSource):void{ let index:number=this.__bindList.indexOf(source); if(index<0){ this.__bindLis...

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

450. [LayaAirIDE3]Laya.loader.on(Event.ERROR, this, this.onError) 无法侦听到加载资源失败 [ 75%]

...       Laya.loader.on(Event.ERROR, this, this.onError);     }      private onAssetLoaded(): void     {         // 使用texture         console.log("加载结束");     }      // 加载进度侦听器     private onLoading(progress: number): void     {         console....

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