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

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

281. 分享一个自己做的游戏公告功能,跑马灯效果 [ 68%]

...Element import Sprite = Laya.Sprite import Box = Laya.Box /** 公告栏 */ export default class Notice extends View { /** 滚动区域 */ hornBox: Box /** html对象 */ html: HTMLDivElement /** 滚动框的宽度 */ defaultX = 1110 /** 动画是否出于播放状态 */ isPlayIng:boolean = false /** ...

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

282. 已经在vs上引用相关的类,编译后bundle.js却没有相关的代码 [ 68%]

...s里面。 有谁碰到过这样的问题? 一个common.ts里面定义了export default class SDispatcher implements ISDispatcher{},然后在其他类里面继承。并导包。export default class xxxx extends SDispatcher{},在vs里面没有发现报错。进行指令编译后,运...

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

283. 关于TS环境下的第三方库导入的疑问 [ 68%]

...s 目录中 也就是把上边的  /// <reference types="when" />  export = autobahn;   删掉 这样就和Laya库的格式比较像 只是多了个命名空间declare namespace autobahn { export class Session { id: number; realm: string; isOpen: boolean; features: any; .......................

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

284. Laya.timer.loop() 报错 Cannot read property 'loop' of null [ 68%]

...age"; // import { List } from "laya/ui/List"; import { Laya } from "laya"; export default class test_move extends Image{ // /** @prop {name:move_img, tips:"用来移动的箭头", type:Image} */ // public _move_img: Image; // public _list: List; //创建一个 List 类的实例对象 list 。 privat...

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

285. Image属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 68%]

... Stage = Laya.Stage; import Image = Laya.Image; import WebGL = Laya.WebGL; export class UI_Image { constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_...

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

286. 缓动-时间线 [ 68%]

...Laya.Keyboard; import TimeLine = Laya.TimeLine; import WebGL = Laya.WebGL; export class Tween_TimeLine { private target:Sprite; private timeLine:TimeLine = new TimeLine(); constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; La...

来源: Laya2.0_示例 发布时间: 20241117

287. 释放资源与阴影冲突的问题 [ 68%]

...mport Resource = Laya.Resource; import RenderTexture = Laya.RenderTexture; export default function destroyUnusedResourcesHack() { // @ts-ignore let idResourcesMap = Resource._idResourcesMap; for (let k in idResourcesMap) { let res = idResourcesMap[k]; if (!(res instanceof RenderTexture) && !...

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

288. 鼠标交互-双指旋转(多点触控) [ 68%]

...nt = Laya.Event; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Interaction_Rotate { private sp: Sprite; private preRadian: number = 0; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = S...

来源: Laya2.0_示例 发布时间: 20241117

289. 缓动-缓动函数演示 [ 67%]

...dler = Laya.Handler; import Tween = Laya.Tween; import WebGL = Laya.WebGL; export class Tween_EaseFunctionsDemo { private character: Sprite; private duration: number = 2000; private tween: Tween; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV ...

来源: Laya2.0_示例 发布时间: 20241117

290. 网络和格式-ProtocolBuffer [ 67%]

...Laya.Loader; import Browser = Laya.Browser; import Handler = Laya.Handler; export class Network_ProtocolBuffer { private ProtoBuf:any = Browser.window.protobuf; constructor() { Laya.init(550, 400); this.ProtoBuf.load("../../res/protobuf/user.proto", this.onAssetsLoaded); } private onAssetsLoaded(err...

来源: Laya_示例 发布时间: 20241117