大约有 1,204 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0048 秒)
Laya_社区(690) Laya_示例(137) Laya2.0_文档(123) Laya2.0_示例(116) Laya3.0_文档(59) Laya3.0_api(39) laya_api(29) Laya2.0_api(11)
...————— 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
...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
...源是直接用龙骨的官方DEMO转的。部分代码片段如下: private _onAnimationCreated(ani) { console.log("ani created:" + ani); this._hero = ani; this.addChild(this._hero); this._hero.pos(300, 400); this...
来源: Laya_社区 发布时间: 20160822
...演示获取旋转方位信息: ```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
...类 * 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
...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
...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
...(Event.ADDED_TO_STAGE, init); } private function setWindowFullSize() : void { var stageW:int = 0; var stageH:int = 0; __JS__( 'stageW = Laya.window.innerWidth;' ); ...
来源: Laya_社区 发布时间: 20170317
...时候使用的是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
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