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

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

381. typeScript Java互调问题 [ 79%]

...————— public class MainActivity extends Activity{          private IPlugin mPlugin = null;     private IPluginRuntimeProxy mProxy = null;     boolean isLoad=false;     boolean isExit=false;     private WebView webView = null;     private Activity activity = null;     @Over...

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

382. 请问layabox对TV端支持的如何? [ 79%]

...2017-05-12 17:11 目前支持滤镜和混合模式有限: 1、滤镜 /**@private 模糊滤镜。*/ public static const BLUR:int = 0x10; /**@private 颜色滤镜。*/ public static const COLOR:int = 0x20; /**@private 发光滤镜。*/ public static const GLOW:int = 0x08; 2、混合模式 ["nor...

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

383. 龙骨动画残影 [ 79%]

...源是直接用龙骨的官方DEMO转的。部分代码片段如下:  private _onAnimationCreated(ani)     {         console.log("ani created:" + ani);         this._hero = ani;         this.addChild(this._hero);         this._hero.pos(300, 400);         this...

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

384. 陀螺仪与加速计(TypeScript-LayaAir基础篇(TS)-硬件设备相关) [ 79%]

...演示获取旋转方位信息: ```typescript class Gyroscope_Sample { private info: Laya.Text; constructor() { Laya.init(550, 400); this.info = new Laya.Text(); this.info.fontSize = 50; this.info.color = "#FFFFFF"; this.info.size(Laya.stage.width, Laya.stage.height); Laya.stage.addChild(this.info...

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

385. laya接入fairyGUI的时候资源加载方式? [ 79%]

...类 * jhj * QQ:8510001 * 2019-11-25 */ export default class FguiResMgr { private static _instance: FguiResMgr; public static get instance(): FguiResMgr { if (!this._instance) this._instance = new FguiResMgr(); return this._instance; } /**加载优先级,越小越优先,最小为0 */ private prio...

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

386. 文本-自动调整文本尺寸 [ 79%]

...age.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; this.setup(); } private setup(): void { // 该文本自动适应尺寸 var autoSizeText: Text = this.createSampleText(); autoSizeText.overflow = Text.VISIBLE; autoSizeText.y = 50; // 该文本被限制了宽度 var widthLimitText: Text = thi...

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

387. 取色器组件 · LayaAir3.0文档 · LAYABOX [ 79%]

...ty } = Laya; @regClass() export class UI_ColorPicker extends Laya.Script { private skin: string = "atlas/comp/colorPicker.png"; constructor() { super(); } // 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { Laya.loader.load(this.sk...

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

388. swf转成H5资源显示超出原有范围 [ 79%]

...(Event.ADDED_TO_STAGE, init);         }                  private function setWindowFullSize() : void         {             var stageW:int = 0;             var stageH:int = 0;             __JS__( 'stageW = Laya.window.innerWidth;' );          ...

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

389. 怎么集成导入mqtt.js到laya中 [ 79%]

...时候使用的是d.ts文件,在ts文件中能正常调用 class Mqtt { private client: Paho.MQTT.Client; private message: Paho.MQTT.Message; private self = this; public constructor() { public connect(url, port, client): void { //初始化 this.client = new Paho.MQTT.Client(url, Number(port), clie...

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

390. Uncaught TypeError: Cannot read property 'XXX' of undefined [ 79%]

Uncaught TypeError: Cannot read property 'XXX' of undefined private var spe:Sprite; private function showApe():void {             spe = new Sprite();             spe.mouseEnabled = true;             spe.x = 100;             spe.y = 100;             spe.w...

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