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

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

291. UI-ProgressBar [ 76%]

..." + Math.floor(value * 100) + "%"); } } new UI_ProgressBar();module laya { import Stage = Laya.Stage; import ProgressBar = Laya.ProgressBar; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_ProgressBar { private progressBar: ProgressBar; constructor() { // 不支持WebGL时...

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

292. 计时器-间隔循环 [ 76%]

...RateBased() { rotateFrameRateBasedText.rotation += 1; } })();module laya { import Stage = Laya.Stage; import Text = Laya.Text; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Timer_Interval { private rotateTimeBasedText: Text; private rotateFrameRateBasedText: Text; constructo...

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

293. ViewStack属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 76%]

...nentDemo.as并设置默认程序,编写代码如下: ```java package { import laya.utils.Handler; import laya.webgl.WebGL; //导入UI发布生成的类 import ui.ComponentDemoUI; public class ComponentDemo { /**包含tab与viewStack组件的测试页面**/ private var comp:ComponentDemoUI; publi...

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

294. 文本-自动调整文本尺寸 [ 76%]

...NE ON FLASH TECHNICAL"; return text; } } new Text_AutoSize();module laya { import Stage = Laya.Stage; import Text = Laya.Text; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Text_AutoSize { constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); ...

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

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

...is.txt.text = "恢复"; } } } new Loader_ClearTextureRes();namespace leo { import Sprite = laya.display.Sprite; import Animation = laya.display.Animation; import Text = laya.display.Text; import Stage = laya.display.Stage; import Browser = laya.utils.Browser; import Stat = laya.utils.Stat; import We...

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

296. UI-Slider [ 76%]

...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_示例 发布时间: 20241118

297. layaMaxUI.js export ui bug (影响编译) [ 76%]

...ylin 赞同来自: 在Main.js中,将引用ui的语句删掉即可。 ``` import ui from "./ui/layaMaxUI"; ``` 在5月份的demo项目调整中,这句话已经去掉了,你应该是用的旧IDE新建的项目。 2019-08-14 0 3 分享 微博 QZONE 微信 叔年心~厌世 赞同来自: 在这...

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

298. 加载-单一类型资源加载 [ 76%]

...s/monkey2.png"); // 使用资源 } } new Loader_SingleType();module laya { import Loader = Laya.Loader; import Texture = Laya.Texture; import Handler = Laya.Handler; export class Loader_SingleType { constructor() { Laya.init(550, 400); // 加载一张png类型资源 Laya.loader.load("res/apes/monkey...

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

299. 计时器-间隔循环 [ 76%]

...teFrameRateBasedText.rotation += 1; } } new Timer_Interval();module laya { import Stage = Laya.Stage; import Text = Laya.Text; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Timer_Interval { private rotateTimeBasedText: Text; private rotateFrameRateBasedText: Text; constructo...

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

300. mac平台1.7.20.2beta版本下compileTargets设置不生效 [ 76%]

...的流程1. 在目录src下新建文件HelloWorld.as代码如下package { import laya.display.Text; /** * ... * @author */ public class HelloWorld{ public function HelloWorld(){ //创建舞台 Laya.init(600, 300);//舞台默认背景色是黑色的 var txt:Text = new Text(); txt.text = "Hello, World...

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