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

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

561. 模拟石头下落过程不明抖动 [ 45%]

...下来观察看看,下面贴上代码import './aui/aui'; import { Game } from './public/Game'; import Stage = Laya.Stage; export class TexasMain{ private balls:Laya.Sprite = ; constructor(){ Config.isAntialias = true // alert("宽"+Laya.Browser.clientWidth+"高"+Laya.Browser.clientHeight ); // Laya....

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

562. 刚刚接触2天layaair,有几个问题请教。 [ 45%]

...s项目里面src就有Main.js格式完全和教程不同 import GameConfig from "./GameConfig"; class Main { constructor() { //根据IDE设置初始化引擎 if (window["Laya3D"]) Laya3D.init(GameConfig.width, GameConfig.height); else Laya.init(GameConfig.width, GameConfig.height, Laya["WebGL"]); La...

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

563. 2.0下资源加载和销毁内存问题 [ 45%]

...页代码如下:   //2.0版本区别为这里需要先import bitmapimg from "./script/bitmapimg "; private flag:boolean = false;     private bt:bitmapimg;     private oldurl:string="" /**此处省略btn创建*/ private onClick():void     { if(this.flag==false){            ...

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

564. 动效问题,没有 ui.TestPUI,官方文档是错的,几年了至今无解答 [ 45%]

...接 提交 3 个回复 157*****593 赞同来自: 加上这个import {ui} from "./ui/layaMaxUI"; 2021-01-11 0 0 分享 微博 QZONE 微信 孙全 赞同来自: 加了以后在layaMaxUI.js里面又报错了 这是layaMaxUI.js/**This class is automatically generated by LayaAirIDE, please do not make an...

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

565. LayaBox进阶之UI管理类 [ 44%]

...的场景被加载时,都会执行这些方法,   import { LogUtil } from "../util/LogUtil";  /** * 为基类定义若干方法 */ export class PatchManager{} (function(){ let _proto:any;  _proto = Laya.Scene.prototype; _proto.createView = function(view:Object){ if (view && !this._vie...

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

566. Unity粒子系统导出支持列表(TypeScript-3D基础(TS)-LayaAir3D之Unity插件使用) [ 44%]

...tion - Box ![Shape Box](./img/Particle_System/ShapeModule_Box.png) 1. Emit from - Volume 2. scale 3. Randomize Direction - Circle ![Shape Circle](img/Particle_System/ShapeModule_Circle.png) 1. Radius 2. Radius Thickness 数值只支持 ` 0 ` / ` 1 ` 两种数值 3. Arc 数值只支持 ` 0 ` / ` 360 ...

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

567. laya.filters.ColorFilter_API3.0 [ 44%]

...e, sprite: Sprite, context: Context, x: number, y: number): void Inherited from BlurFilter._filter Defined in laya/filters/Filter.ts:38 Parameters this: RenderSprite sprite: Sprite context: Context x: number y: number Returns void Globals "laya/filters/ColorFilter" ColorFilter constructor _matrix ad...

来源: Laya3.0_api 发布时间: 20231115

568. iOS 接入微信登录,配置了"Other Linker Flags"中加入"-Objc -all_load"后编译不通过 [ 43%]

...chitecture i386: "_zip_file_set_external_attributes", referenced from: _zip_dir_add in libconch.a(zip_dir_add.o) ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation) helloworldlv • 2018-05-24 10:55 但运行后执...

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

569. 弹窗视图组件 · LayaAir3.0文档 · LAYABOX [ 42%]

...加如下代码: const { regClass } = Laya; import { RuntimeScriptBase } from "./RuntimeScript.generated"; @regClass() export class RuntimeScript extends RuntimeScriptBase { onAwake(): void { this.closeBtn.on(Laya.Event.CLICK, this, () => { this.close(); }); } } 1.3.3 关联场景 设置好弹...

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

570. 如何将一段文字放置到粘贴板 , 或者说点击一个按钮后复制copy一段文字? [ 42%]

...e(Context.CLIPBOARD_SERVICE); plus.android.invoke(clip,"setText","I'm copy from Native.js"); }在 ios 下,这样写: var UIPasteboard = plus.ios.importClass("UIPasteboard"); var generalPasteboard = UIPasteboard.generalPasteboard(); // 设置/获取文本内容: generalPasteboard.setValueforPaste...

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