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

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

1761. 获取位置信息 · LayaAir3.0文档 · LAYABOX [ 71%]

...ndler = null): void { Geolocation.navigator.geolocation.getCurrentPosition(function (pos: any): void { Geolocation.position.setPosition(pos); onSuccess.runWith(Geolocation.position); }, function (error: any): void { onError.runWith(error); }, { enableHighAccuracy: Geolocation.enableHighAccuracy, tim...

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

1762. laya.ani.bone.Skeleton_API3.0 [ 71%]

...s type: string Optional data: any Returns void callLater callLater(method: Function, args?: any[]): void Inherited from Node.callLater Defined in laya/display/Node.ts:621 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 see #runCallLater() Pa...

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

1763. 新手学js做开发,写了一个按钮,点击没有反应 [ 71%]

...JS语法相关的书籍   完整的结构如下所示: var LoginView = (function(_super){     function LoginView(){         LoginView.super(this);     }     Laya.class(LoginView,"LoginView",_super);     return LoginView; })(ui.LoginUI);   2018-01-30 0 0 分享 微博 QZONE 微...

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

1764. 关于Timer中的loop方法 [ 71%]

...ke007 • 2017-08-27 16:20 var i=0; var t=new Laya.Timer(); t.loop(1,this, function () { i++; }) t.loop(1000,this, function () { console.log(i); i=0; }) 测试下 176*****233 • 2017-08-28 10:09 Timer是单例,不要实例它,直接使用Laya.timer.loop(); cike007 • 2017-08-28 13:32 @176*****233 ...

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

1765. 位图字体ide无法注册 [ 71%]

...pFont.loadFont("res/bitmapFont/test.fnt",new Laya.Handler(this,onLoaded)); function onLoaded(){ init(); } function init(){ Laya.Text.registerBitmapFont(this.mFontName,this.mBitmapFont); } 2018-03-29 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 ...

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

1766. 关于js继承类class的参数问题 [ 71%]

...接 提交 1 个回复 w1114367261 赞同来自:  * @example      * (function (_super){      *     function Item(){      *         Item.__super.call(this);//初始化父类      *         this.graphics.drawRect(0, 0, 100, 20, "#ff0000");      *         var label = new l...

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

1767. laya.ui.VScrollBar [ 71%]

...据。 Stage对象和UI的View组件默认为true。 Sprite isLockedFun : FunctionScrollBar isVertical : Boolean 一个布尔值,指示滚动条是否为垂直滚动。如果值为true,则为垂直滚动,否则为水平滚动。 默认值为:true。 ScrollBar lastOffset : Number[read-only...

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

1768. 关于微信小游戏渲染子域图的问题 [ 71%]

...); 上面这句报错: gameThirdScriptError value._addReference is not a function TypeError: value._addReference is not a function     at Texture.<anonymous> (http://127.0.0.1:10656/game/js/bundle.js:15188:19)     at Texture.__proto.setTo (http://127.0.0.1:10656/game/js/bundle.js:15065:1...

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

1769. 用JS原生态window.location.href跳转 [ 71%]

...events.Event; import laya.utils.Browser; public class LayaAirTest { public function LayaAirTest() { Laya.init(550,400); var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,100,100,"#FFFF00"); Laya.stage.addChild(sp); sp.size(1000,100); sp.on(Event.CLICK,this,onClick); } private function onClick():v...

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

1770. native 1.0.2 连不上wss [ 71%]

...var ws = new WebSocket("wss://login.huanxi.twbuyu.com:27777"); ws.onopen = function() { alert("connect success~"); ws.send('tom'); alert("send to server msg: tom"); }; ws.onmessage = function(e) { alert("accpet msg: " + e.data); }; ws.onerror = function(e) { alert("error: " + e); console.log(e) }; &...

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