大约有 471 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0049 秒)
...rt laya.ui.Label; import laya.webgl.WebGL; public class DemoLabel { public function DemoLabel() { Laya.init(800, 600, WebGL); Laya.stage.bgColor = "#232628"; //---------------------------------这是用我自己写的label继承了官方的label,问题是label显示不出来,但是也无报错--...
来源: Laya_社区 发布时间: 20170516
...c var frameFace:int = 1; public function add(child:UIComponent):void { this.cab.addChild(child); } public function getDevices():Array ...
来源: Laya_社区 发布时间: 20180202
...[]; private var _keys:Array = []; /** * 获取字典的长度。 */ public function get lenght():int { return _lenght; } /** * 获取所有的子元素列表。 */ public function get values():Array { return _values; } /** * 获取所有的子元素键名列表。 */ public function get keys():Array...
来源: Laya_社区 发布时间: 20180619
...的位置提醒开发者啊。package { public class LayaSample { public function LayaSample() { //初始化引擎 Laya.init(1136, 640); var func:Function = new A().method; func(); } } } package { public class A { private var _attr:int = 123; public function A() { } public function method():void { t...
来源: Laya_社区 发布时间: 20161213
...een; public class MyBox extends Sprite { private var _shape:Sprite; public function MyBox() { super(); graphics.drawRect(0,0,200,200,"#00ff00"); _shape=new Sprite(); _shape.graphics.drawCircle(0,0,20,"#ff0000"); addChild(_shape); //加上这句正常,反之则异常 //_shape.cacheAsBitmap=true; po...
来源: Laya_社区 发布时间: 20170124
...滤镜位图 createBlurFilter(); /**创建位图方法**/ function createImg(w,h){ var Img = new Laya.Sprite(); //添加到舞台 Laya.stage.addChild(Img); //加载显示图片 Img.loadImage("res/tt.png",w,h); return Img; } /**创建红色滤镜位图方法**/ function creteRedFilter(...
来源: Laya_社区 发布时间: 20170811
... private var log:ILogger; } public function Game() { CONFIG::debug { log = Log.getLogger("Game"); } this.addEventListener(Event.ADDED_TO_STAGE, onAdde...
来源: Laya_社区 发布时间: 20200217
...S_TIMER_TYPE_RECT:String = "PROGRESS_TIMER_TYPE_RECT" public function ProcessTimer(size:Size) { this.spSize = size; super(); } public static function create(img:Image,size:laya.maths.Size...
来源: Laya_社区 发布时间: 20180404
...et; private var mCurrIndex:int = 0; private var mArmature:Skeleton; public function ASDemo() { WebGL.enable(); Laya.init(Browser.width, Browser.height); Laya.stage.bgColor = "#ffffff"; Stat.show(); var DesBtn:Sprite = createButton("销毁动画"); DesBtn.x = 50; DesBtn.y = 50; Laya.stage.addChild(De...
来源: Laya_社区 发布时间: 20170406
...aya.display.Stage; import laya.webgl.WebGL; public class testlaya { public function testlaya() { Laya.init(100, 100, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.bgColor = "#ffffff"; new A(); } } }package { import laya.utils.Handler; public class...
来源: Laya_社区 发布时间: 20170330