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

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

601. laya.d3.core.material.BlinnPhongMaterial [ 67%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames BlinnPhongMaterialProperties | Methods | Constants Packagelaya.d3.core.materialClasspublic class BlinnPhongMaterialInheritanceBlinnPhongMaterial BaseMaterial laya.resource.Resource BlinnPhongMaterial 类用于实现Blin...

来源: Laya2.0_api 发布时间: 20190513

602. 对象池 · LayaAir3.0文档 · LAYABOX [ 67%]

...的类。 * @return 此类型标识的一个对象。 */ static getItemByClass<T>(sign: string, cls: new () => T): T { if (!Pool._poolDic[sign]) return new cls(); var pool = Pool.getPoolBySign(sign); if (pool.length) { var rst = pool.pop(); rst[Pool.POOLSIGN] = false; } else { rst = new cls...

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

603. 物理引擎,我按照官方例子做的,不知道那里写错了,总是报这个错,大神帮我看下 [ 67%]

...play.Sprite; import laya.renders.Render; import laya.utils.Browser; public class Retitution extends Sprite { private const stageWidth:int = 800; private const stageHeight:int = 600; private var Matter:Object = Browser.window.Matter; private var LayaRender:Object = Browser.window.LayaRender; private ...

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

604. laya2.0 runtime问题 [ 67%]

laya2.0 runtime问题 按照2.0官方文档来的,报can not find class xxx 项目已上传,请帮忙看看 附件 : --> 测试1_runtime.rar 2018-10-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 hj 赞同...

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

605. 报错,这不是个构造函数 "StartPage is not a constructor" [ 67%]

...nction(_super){ function StartPage(){ StartPage.__super.call(this); } Laya.class(StartPage,'view.StartPage',_super); return StartPage; })(StartPageUI) LayaSample: var LayaSample = (function(){ (function(){ Laya.init(667,375); Laya.stage.bgColor = "#ffcccc"; Laya.loader.load("res/atlas/ui.atlas",La...

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

606. laya.d3.resource.models.Mesh [ 67%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames MeshProperties | Methods Packagelaya.d3.resource.modelsClasspublic class MeshInheritanceMesh BaseMesh laya.resource.Resource Mesh 类用于创建文件网格数据模板。 Public Properties Hide Inherited Public Propert...

来源: laya_api 发布时间: 20170929

607. ja语言怎么样创建一个工具类在其他地方调用 [ 67%]

...nction (_super) { function Load_() { Load_.super(this); } //注册类 Laya.class(Load_, "Load_", _super); var _proto = Load_.prototype; _proto.run_Fast = function () { console.log("逻辑处理"); } return Load_; })(Laya.Sprite);我的代码,但是下面的继承位置Laya.Sprite这里不写会报...

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

608. 3Ddemo加载Unity导出场景报错resou._removeReference is not a function [ 67%]

...,建议用脚本方式实现,比如子弹脚本。 */ export default class GameUI extends ui.test.TestSceneUI { constructor() { super();          //加载3D场景 //var scene: Laya.Scene3D = Laya.stage.addChild(new Laya.Scene3D()) as Laya.Scene3D; Laya.Scene3D.load("res/LayaScene_terrain...

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

609. 射线BUG [ 67%]

...mera.addComponent(CameraMoveScript); this.camera.clearColor = null; } Laya.class(MousePickingScene, "MousePickingScene", Laya.Scene); MousePickingScene.prototype.lateRender = function (state) { MousePickingScene.__super.prototype.lateRender.call(state); //从屏幕空间生成射线 this.point.eleme...

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

610. 附加脚本的使用问题 [ 67%]

附加脚本的使用问题 class ScaleButton {     constructor() {         console.log("加载ScaleButton");     }     private _owner: any;     public set owner(o: laya.display.Sprite) {         this._owner = o;         console.log("设置owner");     }     public get owner...

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