大约有 93 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0037 秒)
... var img:Sprite; public function MaskDemo() { Laya.init(1136,640); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" //资源路径 Res = "res/img/monkey1.png"; //先加载图片资源,在图片资源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load(Res,Handl...
来源: Laya2.0_文档 发布时间: 20210714
...口类AtlasAniDemo.js,并编写代码如下: ```javascript //初始化舞台 Laya.init(1334, 750,Laya.WebGL); //创建动画实例 this.roleAni = new Laya.Animation(); //加载动画图集,加载成功后执行回调方法 this.roleAni.loadAtlas("res/atlas/role.atlas",Laya.Handler.create(this,...
来源: Laya2.0_文档 发布时间: 20210715
...s AtlasAniDemo{ private roleAni:Laya.Animation; constructor() { //初始化舞台 Laya.init(1334,750,Laya.WebGL); //创建动画实例 this.roleAni = new Laya.Animation(); //加载动画图集,加载成功后执行回调方法 this.roleAni.loadAtlas("res/atlas/role.atlas",Laya.Handler.create(this,...
来源: Laya2.0_文档 发布时间: 20210715
...心点(0,0)作为动画图形的中心点,那就会出现问题,在UI舞台显示的时候超出坐标的地方,默认是无法通过调整宽高来设置点击区域的。 ![7](img/7.png)(图7) 图7中`GraphicNode:2`代表每一个动画节点,在选中`第0帧`可以看到`2`正是目标...
来源: Laya2.0_文档 发布时间: 20210715
...写以下代码: ```typescript class Main { constructor() { //初始化舞台 Laya.init(1334,750); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载图集资源,加载成功后将UI界面添加到舞台上 Laya.loader.load("./res/atlas/ui.atlas",Laya.Handler.create(this,this.onLoa...
来源: Laya2.0_文档 发布时间: 20210715
...Laya.Handler; var Res; var img; (function() { Laya.init(1136,640); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" //资源路径 Res = "res/img/monkey1.png"; //先加载图片资源,在图片资源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load(Res,Handl...
来源: Laya2.0_文档 发布时间: 20210715
...心点(0,0)作为动画图形的中心点,那就会出现问题,在UI舞台显示的时候超出坐标的地方,默认是无法通过调整宽高来设置点击区域的。 ![7](img/7.png)(图7) 图7中`GraphicNode:2`代表每一个动画节点,在选中`第0帧`可以看到`2`正是目标...
来源: Laya2.0_文档 发布时间: 20210715
...ing; private img:Laya.Sprite; constructor() { Laya.init(1336,640); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //资源路径 this.Res = "res/img/monkey1.png"; //先加载图片资源,在图片资源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load(thi...
来源: Laya2.0_文档 发布时间: 20210715
...ctAnimationDemoUI; public class Main { public function Main() { //初始化舞台 Laya.init(1334,750); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" //加载图集资源,加载成功后添加到舞台 Laya.loader.load("./res/atlas/ui.atlas",Handler.create(this,onLoaded)); } private functi...
来源: Laya2.0_文档 发布时间: 20210715
...ge = new Image(bgSkin); //设置图片大小 bg.size(224, 302); //位置居舞台中间 bg.pos(Laya.stage.width - bg.width >> 1, Laya.stage.height -bg.height >> 1); //加载到舞台 Laya.stage.addChild(bg); } /***创建计数器切片***/ private function createCounter():void { //实例化计数器...
来源: Laya2.0_文档 发布时间: 20210714