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

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

721. 水平滑动条组件 · LayaAir3.0文档 · LAYABOX [ 61%]

... Laya.loader.load(skins, Laya.Handler.create(this, this.placeHSlider)); } private placeHSlider(): void { let hs: Laya.Slider = new Laya.HSlider(); hs.skin = "hslider.png"; hs.width = 300; hs.pos(50, 500); hs.min = 0; hs.max = 100; hs.value = 50; hs.tick = 1; hs.changeHandler = new Laya.Handler(this,...

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

722. 请问laya有没有类似翻页容器(pageView)的组件? [ 61%]

...ayaMaxUI"; export default class RuleDialog extends ui.scene.RuleDialogUI { private m_index: number = -1; private m_downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.cha...

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

723. VR场景-VR地球 [ 61%]

..., function() { earth.transform.rotate(rotation, true); });class VRScene1 { private rotation: Laya.Vector3; 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.Scene = Laya.stage.addCh...

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

724. 绘制曲线(TypeScript-LayaAir基础篇(TS)-矢量图) [ 61%]

...ya.WebGL;        export class Sprite_DrawShapes {         private sp: Sprite;            constructor()         {             Laya.init(500, 300, WebGL);             this.drawSomething();         }            private dr...

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

725. 绘制曲线(ActionScript-LayaAir基础篇(AS3)-矢量图) [ 60%]

...        public class Sprite_DrawShapes     {         private var sp:Sprite;                    public function Sprite_DrawShapes()         {             Laya.init(500, 300, WebGL);             drawSomething();       ...

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

726. Button属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 60%]

...:** ```typescript // 程序入口 class GameMain{ //按钮资源路径 private skin:string = "button.png"; constructor() { //初始化引擎,设置宽高并开启WebGL渲染模式 Laya.init(600,400,Laya.WebGL); //设置舞台背景颜色 Laya.stage.bgColor = "#ffffff"; //加载资源成功后,...

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

727. 模型与动画的导入使用 · LayaAir3.0文档 · LAYABOX [ 60%]

...Class, property } = Laya; @regClass() export class Main extends MainBase { private _animator: Laya.Animator; private _isRun: boolean; onAwake() { console.log("Game start"); //加载指定的模型预制体,并添加到Scene3D场景内 Laya.loader.load("girl/girl.lh").then(res => { let girl : La...

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

728. Button属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 60%]

...import laya.webgl.WebGL; public class ComponentDemo { //按钮资源路径 private var skin:String = "./res/img/btn_test.png"; public function ComponentDemo() { //初始化引擎,设置宽高并开启WebGL渲染模式 Laya.init(1334,750, WebGL); //设置舞台背景颜色 Laya.stage.bgColor = "#ff...

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

729. Laya.timer.frameLoop [ 59%]

...lSignal,this);         }    // 更新鱼 子弹的位置         private update(){             // 不在游戏界面             if(fish.data.PlayerData.m_interface != 3){                 return;             }                       // 花费的时间 ...

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

730. 3D中摄像机绕物体旋转该如何实现? [ 59%]

...上一次手机触摸位置判断用户是在左放大还是缩小手势 private oldPosition1: Vector3 = new Vector3(); private oldPosition2: Vector3 = new Vector3(); private m_IsSingleFinger: boolean; /* private void ScaleCamera() { //计算出当前两点触摸点的位置 var tempPosition1 = Inpu...

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