大约有 159 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0040 秒)
...age { import laya.display.Sprite; import laya.display.Text; import laya.ui.Image; import laya.webgl.WebGL; public class TTFTest { public function TTFTest() { Laya.init(550,400); var sp:Image=new Image(); sp.loadImage("2.png"); Laya.stage.addChild(sp); var text:Text=new Text(); text.fontSize=40; text...
来源: Laya_社区 发布时间: 20160514
...r protocol schemes: http, data, chrome, chrome-extension, https. Access to Image at 'file:///Users/dongxiang/Documents/saolei/release/layaweb/v1.0.0/comp/classic_numbers_8.png' from origin 'null' has been blocked by CORS policy: Invalid response. Origin 'null' is therefore not allowed access. 2018-0...
来源: Laya_社区 发布时间: 20180315
...ode = "vertical"; Laya.Stat.show(); var icon = new Laya.Sprite(); icon.loadImage('img/test.png'); Laya.stage.addChild(icon); document.body.addEventListener("click",function(){ var kk = icon.drawToCanvas(431, 428).getContext('2d').canvas; var img = new Image(); img.src = kk.toDataURL(); document.body...
来源: Laya_社区 发布时间: 20161107
...,摸索了一下,可以实现了 2dname = Laya.stage.addChild(new Laya.Image("res/layabox.png")); Laya.timer.frameLoop(1, this, functionname); function functionname() { camera.viewport.project(warehouse1.transform.position, camera.projectionViewMatrix, _outPos); 2dname.pos(_outPos.x / ...
来源: Laya_社区 发布时间: 20180102
... { url: "res/Bag@atlas0.png", type: Loader.IMAGE }, { url: "res/Bag.fui", type: Loader.BUFFER } ], Handler.create(this, onLoaded) ); ...
来源: Laya_社区 发布时间: 20180513
...ex: number): void { let img_rule = cell.getChildByName("img_rule") as Laya.Image; img_rule.skin = cell.dataSource let text_info = cell.getChildByName("text_des") as Laya.Text; let i18n = Laya.loader.getRes("config/i18n.json"); text_info.text = i18n[`tips_text$text_i18n$${1101 + index}`][ConfigInfo.l...
来源: Laya_社区 发布时间: 20170215
...片不能按轴心旋转 两个问题 有元件支援视频流渲染吗? Image元件读不了资料流 打包出来后的APP打开加载速度过慢,有黑屏,如何加入闪屏图片 laya怎么跨域加载图片 路径是对的,但老是,调试控制台提示:错误,图片是IDE自带...
来源: Laya_社区 发布时间: 20180201
...xture; private var xNum:int = 0; private var yNum:int = 0; private var img:Image; public function TestView() { img = new Image("comp/lhjicon_5.png"); img.x = 640; img.y = 320; iconSpr = new Sprite(); iconSpr.width = 1280; iconSpr.height = 640; iconSpr.addChild(img); btn.on(Event.CLICK,this,runGame1)...
来源: Laya_社区 发布时间: 20180113
...640*1038,900K 先创建一个img实例 class bitmapimg extends Laya.Image //2.0版本 这里区别为export default class bitmap extends Laya.Image { private szurl:string="" constructor(url:string){ super() this.onUrlChangeHandler(url); } protected onUrlChangeHandler(url:string):void ...
来源: Laya_社区 发布时间: 20181201
...low.com/questions/12538193/why-does-my-canvas-go-blank-after-converting-to-image 这里的说法,两个方式可用 1. 创建时加入preserveDrawingBuffer,但是,这个参数导致乐视手机崩溃 2. 在每次绘图之后截图,但是laya里哪个函数是绘图?webgl里的renderSubmit...
来源: Laya_社区 发布时间: 20170523