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

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

231. UI-Slider [ 71%]

...e(value) { console.log("滑块的位置:" + value); } })();module laya { import Stage = Laya.Stage; import HSlider = Laya.HSlider; import VSlider = Laya.VSlider; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_Slider { constructor(){ // 不支持WebGL时自动切换至Can...

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

232. 位图字体的制作与使用(ActionScript-LayaAir基础篇(AS3)-文本) [ 71%]

...的效果。 ![8.png](img/8.png) 完整代码如下: ```java package { import laya.display.Stage; import laya.display.Text; import laya.resource.Texture; import laya.utils.Handler; import laya.display.BitmapFont; public class TestBitmapFont { //自定义文件名称 private var mFontName:String = ...

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

233. 鼠标交互-Hold [ 71%]

...; Laya.stage.off(Event.MOUSE_UP, this, onApeRelease); } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Texture = Laya.Texture; import Browser = Laya.Browser; import Ease = Laya.Ease; import Handler = Laya.Handler; import Tween = Laya.Twee...

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

234. UI-Label [ 71%]

...okeColor; } Laya.stage.addChild(label); return label; } })();module laya { import Stage = Laya.Stage; import Label = Laya.Label; import WebGL = Laya.WebGL; export class UI_Label { constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_MI...

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

235. 【Laya2.1BUG】 给view设置runtime后,类型是any [ 71%]

...}2,修改CodeManager.objToUI函数: 把if(ProjectSetting.codeType==0){ imports+=" import "+lib+";\n"; }改成:if(ProjectSetting.codeType==0){ imports+=" import "+lib+";\n"; }else if(this.projectSetting.codeType==1&&lib.lastIndexOf(".ts")==lib.length-3){ libName=lib.substring(lib.lastIn...

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

236. 加载TiledMap 不显示 [ 71%]

加载TiledMap 不显示 import Sprite = Laya.Sprite; import Stage = Laya.Stage; import MapLayer = Laya.MapLayer; import TiledMap = Laya.TiledMap; import Point = Laya.Point; import Rectangle = Laya.Rectangle; import Handler = Laya.Handler; import WebGL = Laya.WebGL;  export...

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

237. 鼠标交互-Hold [ 71%]

...USE_UP, this, this.onApeRelease); } } new Interaction_Hold();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Texture = Laya.Texture; import Browser = Laya.Browser; import Ease = Laya.Ease; import Handler = Laya.Handler; import Tween = Laya.Twee...

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

238. 区块地图-滚动地图 [ 71%]

...hangeViewPort(mX, mY, Browser.width, Browser.height); } })();module laya { import Stage = Laya.Stage; import TiledMap = Laya.TiledMap; import Rectangle = Laya.Rectangle; import Browser = Laya.Browser; import Handler = Laya.Handler; import Stat = Laya.Stat; import WebGL = Laya.WebGL; export class Til...

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

239. UI-Slider [ 71%]

...nsole.log("滑块的位置:" + value); } } new UI_Slider();module laya { import Stage = Laya.Stage; import HSlider = Laya.HSlider; import VSlider = Laya.VSlider; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_Slider { constructor(){ // 不支持WebGL时自动切换至Can...

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

240. 屏幕适配-对齐模式 [ 71%]

...age.ALIGN_MIDDLE; Laya.stage.bgColor = "#232628"; })(); })();module laya { import Stage = Laya.Stage; export class SmartScale_Align_Contral { constructor() { Laya.init(100, 100); Laya.stage.scaleMode = Stage.SCALE_NOSCALE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDL...

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