大约有 485 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0055 秒)
...w.com" }); wx.onSocketOpen(function (res) { // webSocket打开事件处理 console.log('websocket opened.'); var msg = JSON.stringify({ Hello: { Name: 'hi lei lei~' }}) wx.sendSocketMessage({ data: msg }); }); wx.onSocketError(function (res) { // 链接出错时的处理 console.log('webSocket fail'...
来源: Laya_社区 发布时间: 20180528
...隔(单位:毫秒) ani.index = 0; // 当前播放索引 console.log(ani.index); ani.play(); console.log(ani.index); var bounds = ani.getGraphicBounds(); ani.pivot(bounds.width / 2, bounds.height / 2); ani.pos(Laya.stage.width / 2, Laya.stage.height / 2); con...
来源: Laya_社区 发布时间: 20160712
...一个测试代码,压根就没有功能。 class Main { constructor() { console.log(Laya.Browser.width, Laya.Browser.height); this.current = { x: 0, y: Laya.Browser.height }; // Laya.stage.bgColor = "#3F51B5"; this.sp = new Laya.Sprite(); Laya.stage.addChild(this.sp); } render() { console.log("re...
来源: Laya_社区 发布时间: 20180602
... code= res.code; console.log("登陆成功,获取到code") } var button = wx.createUserInfoButton( { type: 'text', ...
来源: Laya_社区 发布时间: 20180911
...create(this, function(){ }), Laya.Handler.create(this, function(e){ console.log(e) } , Laya.Loader.ATLAS); 此时进度e的值只有一个数0.41 ,不会从0到1,这是什么原因? 2018-01-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20180101
...谢谢? const scene = new Laya.Scene(); scene.onOpened = () => { console.log('scene onOpened'); }; scene.open(); console.log('scene', scene.active, scene.activeInHierarchy); Laya.timer.frameOnce(10, this, () => { console.log('scene 2', scene.active, scene.activeInHierarchy); }); 日...
来源: Laya_社区 发布时间: 20190422
...ewPort(this._mViewPortX, this._mViewPortY, Browser.width, Browser.height); console.log(`ViewPort=${this._mViewPortX},${this._mViewPortY},${Browser.width},${Browser.height}`); console.log(`Map=${this._mTiledMap.width},${this._mTiledMap.height}`); if(++this._mTest === 2){ console.log("the second call....
来源: Laya_社区 发布时间: 20180529
...); Laya.stage.addChild(button); return button; } function onPlayMusic(e) { console.log("播放音乐"); SoundManager.playMusic("../../res/sounds/bgm.mp3", 1, new Handler(this, onComplete)); } function onPlaySound(e) { console.log("播放音效"); SoundManager.playSound("../../res/sounds/btn.mp3", 1,...
来源: Laya_社区 发布时间: 20170527
...Move extends Laya.Script { constructor() { super(); } onTriggerEnter() { console.log("111"); } onTriggerStay() { console.log("111"); } onTriggerExit() { console.log("111"); } onEnable() { } onDisable() { } } //这是两个类,直接可以就不会发生触发效果,什么都不输出,还...
来源: Laya_社区 发布时间: 20190314
...ontName; this._defaultFont = fontName; console.log("小游戏字体加载成功->" + fontName);//成功走到这里了 但是UI没效果 } else { console.error("小游戏字体加载失败 字体路径=" + nativePath); ...
来源: Laya_社区 发布时间: 20240513