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

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

51. 输入设备-指南针 [ 95%]

...Laya.WebGL; import Event = Laya.Event; export class InputDevice_Compasss { private compassImgPath:string = "res/inputDevice/kd.png"; private compassImg:Sprite; private degreesText:Text; private directionIndicator:Sprite; private firstTime:Boolean = true; constructor() { Laya.init(700, 1024, WebGL); ...

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

52. 分享:图集资源做位图文本的工具类(知道fontclip组件的可以略过了,之前一直没注意到这个组件) [ 95%]

.../* * 位图字体; */ class BPFont extends Laya.Sprite { // 文本内容 private _text: string; // 水平排列方式 private _align: string; // 资源前缀 private resFix: string; // 间距 private _padding: number; // 位图集合 private chars: Laya.Sprite = ; // 回收池 private static fontPoo...

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

53. 网络和格式-POST [ 95%]

...ser = Laya.Browser; import WebGL = Laya.WebGL; export class Network_POST { private hr: HttpRequest; private logger: Text; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH =...

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

54. 网络和格式-GET [ 95%]

...wser = Laya.Browser; import WebGL = Laya.WebGL; export class Network_GET { private hr: HttpRequest; private logger: Text; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH =...

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

55. 鼠标交互-键盘交互 [ 95%]

...age.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; this.setup(); } private setup(): void { this.listenKeyboard(); this.createLogger(); Laya.timer.frameLoop(1, this, this.keyboardInspector); } private listenKeyboard(): void { this.keyDownList = []; //添加键盘按下事件,一直按着某...

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

56. 加载-销毁Texture使用的图片资源 [ 94%]

...ure 使用的图片资源不存在,则自动恢复。 */ class GameMain{ private spBg:Sprite; private aniFly:Animation; private btn:Sprite; private txt:Text; private isDestroyed:Boolean = false; private readonly PathBg:string = "res/bg2.png"; private readonly PathFly:string = "res/fighter/fighter....

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

57. 缓动-缓动函数演示 [ 94%]

...a.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 = Stage.ALIGN_MIDDLE; Laya.stage.alignH...

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

58. 缓动-缓动函数演示 [ 94%]

...a.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 = Stage.ALIGN_MIDDLE; Laya.stage.alignH...

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

59. Socket连接不上(已解决) [ 94%]

...webgl.WebGL;          public class LayaDemo      {         private var socket:Socket;         private var output:Byte;                  private var txt:Text;                  public function LayaDemo()         {             Laya.init(600, ...

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

60. 鼠标交互-Hold [ 94%]

...n = Laya.Tween; import WebGL = Laya.WebGL; export class Interaction_Hold { private HOLD_TRIGGER_TIME: number = 1000; private apePath: string = "../../res/apes/monkey2.png"; //触发hold事件时间为1秒 private ape: Sprite; private isApeHold: Boolean; constructor() { // 不支持WebGL时自动切...

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