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

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

551. layanative安卓端需要怎么添加ttf字体,需要增加两种字体? [ 59%]

...andler; /** * ... * @author ww */ public class TestTTFLoader  {   public function TestTTFLoader()  { Laya.init(1000, 900);   Laya.loader.load("res/remember.ttf",new Handler(this,test)); }   private function test():void { var text:Text; text = new Text(); text.fontSize = 30; text.color = "#ff000...

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

552. Sprite中的width,height和size(width,height)感觉没作用啊 [ 59%]

...(width,height)是我理解问题,还是我写错了呢。。。。 function Init(){ Laya.init(800,600); bg = new laya.display.Sprite(); bg.loadImage("res/bg.png"); bg.pos(0,0); bg.width = 100; bg.height = 100; bg.size(100,100); Laya.stage.addChild(bg); } 2016-07-11 添加评论 免费帖 -->...

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

553. Spine适配版(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 59%]

...private var skeleton:SpineSkeleton; private var index: Number = -1; public function Main() { Laya.init(Browser.width, Browser.height, WebGL); Laya.stage.scaleMode = Stage.SCALE_NOSCALE; Laya.stage.bgColor = "#232628"; Stat.show(); this.startFun(); } private function startFun(): void { this.templet =...

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

554. 通过laya设计模式制作的,要怎么给按钮绑定事件呢? [ 59%]

...aya.stage.addChild(new TabUI()) this.getGold.on(Laya.Event.MOUSE_DOWN,this,function(){ console.log("点击事件") }) // console.log(this.getGold) } } new Main() Laya_Aaron • 2017-12-13 17:09 getGold 哪定义的呢 xdkaka • 2017-12-13 17:17 上面图片截图了,是在UI编辑模式...

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

555. 位图字体生效 [ 59%]

...ont.loadFont("res/bitmapFont/test.fnt", new Laya.Handler(this, onLoaded)); function onLoaded(){ mBitmapFont.setSpaceWidth(10); Laya.Text.registerBitmapFont(mFontName,mBitmapFont); let txt = new Laya.Text(); txt.text='手机号 +86'; txt.color='#FFFFFF'; txt.font = mFontName;//===============代码...

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

556. 在加载swf动画之后在封装的里面报错了 , 用的官网的例子 [ 59%]

...6 值。     *@return Int16 值。     */     __proto.getInt16=function(){         if (this._pos_+2 > this._length)throw "getInt16 error - Out of bounds";         var us=this._d_.getInt16(this._pos_,this._xd_);         this._pos_+=2;         return us; ...

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

557. 播放音效时报错Failed to set the 'buffer' property on 'AudioBufferSourceNode'的问题 [ 59%]

...ffer' property on 'AudioBufferSourceNode'的问题 __proto._tryClearBuffer=function(sourceNode){ // if (!Browser.onMac){ // try{ // sourceNode.buffer=null; // }catch (e){ // WebAudioSoundChannel._tryCleanFailed=true; // } // return; // } try {sourceNode.buffer=WebAudioSound._miniBuffer;}catch (e){We...

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

558. 寻路系统(TypeScript-3D基础(TS)-LayaAir3D之高级应用) [ 59%]

...``typescript //监听鼠标抬起 Laya.stage.on(Laya.Event.MOUSE_UP, this, function() { this.index = 0; //获取每次生成路径 this.getGridIndex(this.path[this.curPathIndex % this.pointCount].x, this.path[this.curPathIndex++ % this.pointCount].z, this.startPoint); this.getGridIndex(this.path[thi...

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

559. 材质的加载(ActionScript-3D基础(AS3)-LayaAir3D之Material材质) [ 58%]

...质加载 BaseMaterial.load("res/skyBox2/skyBox2.lmat",Handler.create(this,function(mat:BaseMaterial):void { var skyRenderer:SkyRenderer = camera.skyRenderer; //创建天空盒的mesh skyRenderer.mesh = SkyBox.instance; //设置天空盒材质 skyRenderer.material = mat; })); ``` ![](img/1.png)(图1...

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

560. CheckBox属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 58%]

.../check.png"; private var skin2:String ="res/component/check_2.png"; public function ComponentDemo() { //初始化引擎,设置宽高并开启WebGL渲染模式 Laya.init(1334,750, WebGL); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoad回调方法 Laya...

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