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

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

311. 分享:Panel下动态修改子容器宽高并刷新显示! [ 65%]

...aya.ui.Panel; import laya.utils.Browser; import laya.utils.Handler; public class LayaUISample { public function LayaUISample() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.width, Browser.height); //ui组件,除了image和clip外,其他皮肤均需要预加载资源,此处添...

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

312. 多线程worker(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 65%]

...我们新建一个ui项目。简单的调用接口如下: ```typescript class LayaUISample { constructor() { //初始化引擎 Laya.init(600,400,Laya.WebGL); //设置Laya提供的worker.js路径 Laya.WorkerLoader.workerPath = "libs/worker.js"; //开启worker线程 Laya.WorkerLoader.enable = true; ...

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

313. laya.ui.UIEvent [ 65%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames UIEventProperties | Methods | Constants Packagelaya.uiClasspublic class UIEventInheritanceUIEvent Event Object UIEvent 类用来定义UI组件类的事件类型。 Public Properties Hide Inherited Public Properties Show...

来源: Laya2.0_api 发布时间: 20190513

314. laya.events.InputManager_API3.0 [ 65%]

...ternals Only exported Menu Globals "laya/events/InputManager" InputManager Class InputManager Hierarchy InputManager Index Constructors constructor Properties clickTestThreshold isTextInputting isiOSWKwebView keyEventsEnabled mouseEventsEnabled mouseX mouseY multiTouchEnabled Accessors inst touchCou...

来源: Laya3.0_api 发布时间: 20231115

315. 正常运行的2.1升级到2.2.0出现循环依赖的错误,这是咋回事丫 ? [ 65%]

...成的js也有这种情况才构成循环。 例如 A.ts import B from 'B' class A{    b:B; } 这种的,在生成js以后由于B只是表示类型,js是不需要的,所以上面的import就没了。  无法去掉的import主要是类似 new B, extends B, instanceof B, 以及静态成员...

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

316. Layaair scene怎么不会自动生成代码了? [ 65%]

...ce了吗?   layabox1.0还可以这样写: namespace game{    export class Define{    } } import Define =game.Define;   LayaAir2.0导入无效   2019-05-27 0 0 分享 微博 QZONE 微信 156*****215 赞同来自: 需要这样写成这样: import {Define} from "./game/Define" ? 2019-05-...

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

317. 按照打地鼠教程来无法正常加载资源 [ 65%]

按照打地鼠教程来无法正常加载资源 public class Main{         public function Main(){             //初始化引擎             Laya.init(1136, 640);             Laya.stage.bgColor = "#ffcccc";             var resArr:Array = [  ...

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

318. laya.ui.AutoBitmap_API3.0 [ 64%]

...rited Externals Only exported Menu Globals "laya/ui/AutoBitmap" AutoBitmap Class AutoBitmap AutoBitmap 类是用于表示位图图像或绘制图形的显示对象。 封装了位置,宽高及九宫格的处理,供UI组件使用。 Hierarchy Graphics AutoBitmap Index Constructors constructor Pro...

来源: Laya3.0_api 发布时间: 20231115

319. ScrollRect设置会引起其他的UI资源无法正在显示 [ 64%]

...ort laya.ui.Image; import laya.utils.Handler; import ui.TestViewUI; public class TestView extends TestViewUI { private var PATH_LEN:Number = 120.0; private var speed:Number = 15; private var _path:Sprite = new Sprite(); private var arr:Array = []; public function TestView() { super(); _path.pivot(0,...

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

320. 仿照laya官方demo做了一个视频播放的UI,为啥在微信里不能用? [ 64%]

...?代码如下:   /**Created by the LayaAirIDE*/ module view { export class Guide extends ui.GuideUI { constructor() { super(); // 创建Video元素 let videoElmt: any = Laya.Browser.createElement("video"); Laya.Browser.document.body.appendChild(videoElmt); // 设置Video元素地样式和属性...

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