大约有 388 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0037 秒)
Laya_社区(282) Laya2.0_文档(34) Laya3.0_文档(17) Laya2.0_示例(16) Laya_示例(14) Laya3.0_api(13) Laya2.0_api(8) laya_api(4)
...fig[this.type].width / 2) + 10, y: (config[this.type].heightp / 2) + 45 }, 500,callback) } 2017-11-14 0 0 分享 微博 QZONE 微信 callback 赞同来自: 你的callback 是一个Function?? 根据api callback必须是一个 to(target:*, props:Object, duration:int, ease:Function = null, complete...
来源: Laya_社区 发布时间: 20171111
...en; var WebGL = Laya.WebGL; var mAniPath; var mStartX = 400; var mStartY = 500; var mFactory; var mActionIndex = 0; var mCurrIndex = 0; var mArmature; var mCurrSkinIndex = 0; var mFactory2; var mLabelSprite; (function(){ Laya.init(Browser.width, Browser.height,WebGL); Laya.stage.bgColor = "#ffffff";...
来源: Laya_示例 发布时间: 20241124
...on() { //初始化舞台 Laya.init(500, 300, WebGL); drawSomething(); })(); function drawSomething() { sp = new Sprite(); Laya.stage.addChild(sp); //画直线 ...
来源: Laya2.0_文档 发布时间: 20210715
...aded: number = 0; private resAmount: number = 3; constructor() { Laya.init(500, 400); // 按序列加载 monkey2.png - monkey1.png - monkey0.png // 不开启缓存 // 关闭并发加载 Laya.loader.maxLoader = 1; Laya.loader.load("res/apes/monkey2.png", Handler.create(this, this.onAssetLoaded), null...
来源: Laya2.0_示例 发布时间: 20241124
...; public class Main { public function Main() { //初始化引擎 Laya.init(500,500);//初始化引擎 var skins:Array = [ "res/button-1.png" ]; Laya.loader.load(skins, Handler.create(this, onUIAssetsLoaded)); } public function onUIAssetsLoaded():void { var btn:Button = new Button("res/button-1.png")...
来源: Laya_社区 发布时间: 20180529
...s TestDemo { private var sp:Sprite; public function TestDemo() { Laya.init(500,500); Laya.stage.bgColor="#EEFFCC"; sp=new Sprite(); sp.graphics.drawRect(0,0,100,50,"#FF0000"); sp.size(100,50); // 设置轴心点为显示对象的中心,显示位置在可拖拽区域之内 sp.pivot(sp.width/2,sp.he...
来源: Laya_社区 发布时间: 20170106
...elease); } function onHold() { Tween.to(ape, { "scaleX": 1, "scaleY": 1 }, 500, Ease.bounceOut); isApeHold = true; } /** 鼠标放开后停止hold */ function onApeRelease() { // 鼠标放开时,如果正在hold,则播放放开的效果 if (isApeHold) { isApeHold = false; Tween.to(ape, { "scaleX...
来源: Laya_示例 发布时间: 20241124
...项目开发更高效。let mFactory, mArmature, mStartX = 400, mStartY = 500, mCurrIndex = 0, mLabelSprite; class Skeleton_SpineEvent { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Sprite = Laya.Sprite; // 不支持WebGL时自动切换至Ca...
来源: Laya2.0_示例 发布时间: 20241124
...yaRender.run(render); World.add(engine.world, [ Bodies.rectangle(200, 150, 500, 20, { isStatic: true, angle: Math.PI * 0.06 }), Bodies.rectangle(500, 350, 1650, 20, { isStatic: true, angle: -Math.PI * 0.06 }), Bodies.rectangle(300, 560, 1600, 20, { isStatic: true, angle: Math.PI * 0.04 }) ]); engine...
来源: Laya_社区 发布时间: 20170728
....Tween, Ease = Laya.Ease; Tween.to(this.ape, { "scaleX": 1, "scaleY": 1 }, 500, Ease.bounceOut); isApeHold = true; } /** 鼠标放开后停止hold */ onApeRelease() { const Tween = Laya.Tween, Event = Laya.Event; // 鼠标放开时,如果正在hold,则播放放开的效果 if (isApeHold) { isApe...
来源: Laya2.0_示例 发布时间: 20241124