大约有 339 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0059 秒)
Laya_社区(176) Laya3.0_api(65) Laya2.0_文档(28) Laya_示例(17) Laya2.0_示例(14) Laya2.0_api(14) laya_api(13) Laya3.0_文档(12)
...I DocumentationAll Packages | All Classes | Index | Frames No Frames TextInputProperties | Methods | Events Packagelaya.uiClasspublic class TextInputInheritanceTextInput Label Component Sprite Node EventDispatcher ObjectSubclasses TextArea TextInput 类用于创建显示对象以显示和...
来源: laya_api 发布时间: 20170929
... //显示加载进度 Laya.timer.loop(100,this,this.ontime); this.txt_load.text = "资源加载中,当前进度:" + parseInt(this.loadNum) + "%"; //this.onComplete(); } //时钟定时执行函数 _proto_.ontime = function(){ this.loadNum=parseInt(this.loadNum) + 1; console.log(this.loadNum); ret...
来源: Laya_社区 发布时间: 20171209
...Protected All Inherited Externals Only exported Menu Globals "laya/display/Text" Text Class Text Text 类用于创建显示对象以显示文本。 注意:如果运行时系统找不到设定的字体,则用系统默认的字体渲染文字,从而导致显示异常。(通常电脑上显示正...
来源: Laya3.0_api 发布时间: 20231115
...ate(this,this.onLoading)); } onLoading(progress){ this.gameLoading.loadTxt.text="Loading..."+(progress*100)+"%"; } onLoaded() { this.cacheAnimation(); var waterBg = Laya.Sprite.fromImage("res/bg.png"); Laya.stage.addChild(waterBg); //创建背景 this.bg = []; this.bg[0] = new BackGround("res/bg1.pn...
来源: Laya_社区 发布时间: 20170103
... 2 个回复 ltmking 赞同来自: /**玩家名称 */ private txtName:Laya.Text; //场景的相机 public otherGameScene:Laya.Camera; private _outPos:Laya.Vector3 = new Laya.Vector3(); this.txtName = new Laya.Text(); this.txtName.color = "#FFFFFF"; this.txtName.text = this.playerName; this.txtName.f...
来源: Laya_社区 发布时间: 20171010
...被折叠 要回复问题请先登录 发起人 zhoujiapeng 相关问题 Text类中竟然没有pos函数的api~ 请问如何在socket上封装websocket? 请问Layabox引擎有没有对游戏虚拟摇杆的封装 两个面板发布生成的ui代码在同一个文件类中。 有封装好的ByteArray....
来源: Laya_社区 发布时间: 20160926
...加到舞台,代码如下: ```java package { import laya.display.Text; /** @author Charley */ public class HelloLayabox { public function HelloLayabox() { //创建舞台,默认背景色是黑色的 Laya.init(600, 300); var txt:Text = new Te...
来源: Laya2.0_文档 发布时间: 20210715
...ddChild(this._goldButton); this.setGold = function(gold) { this._goldLabel.text = "×" + gold + "金豆"; }; this.setGoldImage = function(img) { this._goldImage.skin = img; this._goldImage.pos((312-this._goldImage.width)/2, (462-this._goldImage.height)/2); }; this.setPrice = function(price) { this._...
来源: Laya_社区 发布时间: 20170422
...x selection skewX skewY skin space stage stateNum staticCache strokeColors texture timer toolTip top transform url viewport visible width x y zOrder Methods _initialize _processActive _setSkin addChild addChildAt addChildren addComponent addComponentInstance addItem bubbleEvent callLater clearTimer ...
来源: Laya3.0_api 发布时间: 20231115
....)可以播放指定动画。 example 以下示例代码,创建了一个 Text 实例。 package { import laya.display.Animation; import laya.net.Loader; import laya.utils.Handler; public class Animation_Example { public function Animation_Example() { Laya.init(640, 800);//设置游戏画布宽高...
来源: Laya3.0_api 发布时间: 20231115