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

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

21. 屏幕适配的缩放模式详解(ActionScript-2D基础篇(AS3)-屏幕适配) [ 78%]

....display.Stage;     import laya.display.Text;     import laya.ui.Image;            public class SmartScale_T {                    //全局文本信息         private var txt:Text;                    public function SmartScale_T(...

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

22. 打包成APK运行一半崩溃 [ 78%]

...tion-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/system/app/WebViewGoogle/WebViewGoogle.apk --oat-file=/data/dal...

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

23. 屏幕适配的缩放模式详解(TypeScript-2D基础篇(TS)-屏幕适配) [ 78%]

...script module laya {     import Text = Laya.Text;     import Image = Laya.Image;     import Sprite = Laya.Sprite;       export class SmartScale_T {           //适配模式         private modes:string = "exactfit";         //全局文本信...

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

24. 淘宝创意互动分包指南(TypeScript-小游戏适配文档-淘宝创意互动) [ 77%]

...一个子分包名称要用英文逗号隔开。如下图所示 例: ![](Image/5.png) ------ ![](Image/6.png) ------ ![](Image/7.png) #### 1.2 资源分包 在进行资源分包前,我们需要注意。在发布面板上的分包选项中,我们需要提前在工程的bin文件夹下自己新...

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

25. 小游戏子域程序加载到图集后,取图集内资源报错。 [ 77%]

...beginLoad(); }); private function beginLoad():void { Laya.loader.load("res/images/rank.json", Handler.create(this, onLoaded)); } private function onLoaded():void { trace("加载成功"); var c:Image = new Image("rank/country.png"); Laya.stage.addChild(c); }  以上是子域项目中加载图集和...

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

26. Clip属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 77%]

...= Laya.Stage; import Button = Laya.Button; import Clip = Laya.Clip; import Image = Laya.Image; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_Clip { private buttonSkin: string = "res/ui/button-7.png"; private clipSkin: string = "res/ui/num0-9.png"; private bgSkin: string =...

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

27. 关于Panel的双指响应问题 [ 77%]

...sparta 赞同来自: <pre> (function() { var Stage = Laya.Stage; var Image = Laya.Image; var WebGL = Laya.WebGL; var Panel = Laya.Panel; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_C...

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

28. Clip属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 76%]

...ar Stage = Laya.Stage; var Button = Laya.Button; var Clip = Laya.Clip; var Image = Laya.Image; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var buttonSkin = "res/ui/button-7.png"; var clipSkin = "res/ui/num0-9.png"; var bgSkin = "res/ui/coutDown.png"; var counter, currFrame, controller; (func...

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

29. Laya.Loader.getRes请教 [ 76%]

...问题 Laya.Loader.getRes请教 Laya.loader.load("res/atlas/games/game_13/image.atlas", Handler.create(this, this.createView)); 在createView回调里面调用 let tex: Texture = Laya.Loader.getRes("image/shake_01.png"); 想拿图集中的某一张图片。发现拿不到这张图片。 但是我换...

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

30. load方法加载cdn上面的图片资源的时候直接报了跨域不同源的问题,怎么破? [ 76%]

...ndler.create(this, this.startLoaded)); 代码是这样的 报错 Access to Image at 'http://caifu-1251177394.file.myqcloud.com/beta/book/bookLaya/img/progressBar$bar.png' from origin 'http://bookportal.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the re...

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