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

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

631. textArea滚动条异常问题 [ 67%]

...= true;//使用ide设置的 txtInput.on(Event.INPUT, this, onInputChange); private function reset(e:Event = null):void { clickStar = 0; txtInput.text = ""; txtLast.text = "剩余输入:" + WelfareNoticeMgr.MAX_WARD + "字"; } private function onInputChange(e:Event):vo...

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

632. 导出的3D资源加载报错 [ 67%]

...        public class LayaSample {                  private var _stateMachine:StateMachine;         public function LayaSample()         {             Laya3D.init(1000, 500,true); //适配模式 Laya.stage.scaleMode = Stage.SCALE_FULL; Laya.stage.scr...

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

633. 文本-多行输入 [ 67%]

...aleMode = "showall"; Laya.stage.bgColor = "#232628"; this.createInput(); } private createInput(): void { var inputText: Input = new Input(); // 移动端输入提示符 inputText.prompt = "Type some word..."; //多行输入 inputText.multiline = true; inputText.wordWrap = true; inputText.size(350, 1...

来源: Laya2.0_示例 发布时间: 20241125

634. 添加fairygui使用fairygui.UIPackage.addPackage ( "res/Bag" )后可以正常跑,发布到微信小游戏出错 [ 67%]

...ddPackage ( "res/Bag" )后可以正常跑,发布到微信小游戏出错 private function beginLoad():void {             //加载引擎需要的资源             //Laya.loader.load("res/atlas/comp.atlas", Handler.create(this, onLoaded));              Laya.load...

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

635. laya.media.SoundChannel [ 67%]

...rotected Methods  MethodDefined By  __runComplete(handler:Handler):void private SoundChannelProperty DetailcompleteHandlerpropertypublic var completeHandler:Handler 播放完成处理器。 durationproperty duration:Number  [read-only] 获取总时间,单位是秒。 Implementation     p...

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

636. 缓动动画(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 67%]

...or = "#1b2436"; //创建缓动文本 createTween(); } //创建缓动文本 private function createTween():void { //"LayaBox"字符串总宽度 var w:int = 800; //文本创建时的起始x位置(>>在此使用右移运算符,相当于/2 用>>效率更高) var offsetX:int = Laya.stage.width - w >> 1...

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

637. 使用官方文档中qrcode生成二维码的代码,打包APP后无效 [ 67%]

...,二维码生成不了,麻烦老师看下是什么问题,谢谢! private initCode() { var div: any = Laya.Browser.document.createElement("div"); this.qrcode = new Laya.Browser.window.QRCode(div, { width: 100, height: 100 }); var url: string = this.URL; this.qrcode.makeCode(url); Laya.stage.o...

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

638. Laya.Pool用法 [ 67%]

... 2017-08-07 09:44:25      */     export class ProtoPool {         private static _dic: Laya.Dictionary;         public static PROTO_HEAD: string = "proto_Head";         public static PROTO_BINARY_REQUEST: string = "proto_BinaryRequest";         public static PROTO_PARAMS: string...

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

639. Sprite-根据数据绘制路径 [ 67%]

...eMode = "showall"; Laya.stage.bgColor = "#232628"; this.drawPentagram(); } private drawPentagram(): void { var canvas: Sprite = new Sprite(); Laya.stage.addChild(canvas); var path: Array = []; path.push(0, -130); path.push(33, -33); path.push(137, -30); path.push(55, 32); path.push(85, 130); path.pu...

来源: Laya_示例 发布时间: 20241125

640. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 66%]

...导致图形重绘: ```typescript var rotation=0, scale=1, position=0; private function setRotation(value):void { this.rotation=value; update(); } private function setScale(value):void { this.scale = value; update(); } private function setPosition(value):void { this.position = value; update(); } p...

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