大约有 177 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
Laya3.0_api(63) Laya_社区(58) Laya2.0_文档(20) Laya2.0_api(13) laya_api(12) Laya2.0_示例(5) Laya_示例(5) Laya3.0_文档(1)
...了解一下API的参数说明,再通过示例代码进行介绍。laya.display.text中关于文本样式的API参数: ![1](img/1.png) ![2](img/2.png) ![3](img/3.png) ![4](img/4.png) 给我们设置字体样式的代码中,先给这个文本设置一个文本区域,然后设置文本在文...
来源: Laya2.0_文档 发布时间: 20210715
...nt中只读属性touches,问题,求解 主类: package { import laya.display.Text; import laya.events.Event; import laya.webgl.WebGL; public class DemoTouch { public function DemoTouch() { Laya.init(800, 600, WebGL); Laya.stage.bgColor = "#232628"; var txt:Text = new Text(); txt.text = "hello"...
来源: Laya_社区 发布时间: 20170519
...类型 Hp.HP_TYPE_SPEED = "hp_type_speed"; //Hp Laya.class(Hp,"Hp", laya.display.Sprite); var _proto = Hp.prototype; _proto.init = function(type){ this.width = 180; this.height = 21; var texture1 = Laya.loader.getRes("res/hp_bg.png"); var texture2; switch (type) { case Hp.HP_TYPE_ENERGY: texture2 = ...
来源: Laya_社区 发布时间: 20160803
...andler.create(this,graphicsImg)); function graphicsImg(){ var s = new laya.display.Sprite(); s.graphics.drawTexture(Laya.loader.getRes("../res/image/bg.png"),0,0); Laya.stage.addChild(s); } 新建一个工程 這样写打包之后会白屏 2018-08-08 0 8 分享 微博 QZONE 微信 为什么被折...
来源: Laya_社区 发布时间: 20180808
...本进行处理,不处理的话内容有可能超出我们舞台。 Laya.display.text 中所使用的API 参数: ![1](img/1.png) hidden:不显示超出文本域的字符。 visible:不进行任何裁切。 scroll:不显示文本域外的字符像素,并且支持scroll接口。 ```typescript mo...
来源: Laya2.0_文档 发布时间: 20210715
...字显示不全 代码demopackage { import laya.webgl.WebGL; import laya.display.Text; public class LayaSample { public function LayaSample() { //初始化引擎 Laya.init(480, 640,WebGL); Laya.stage.bgColor = "#FFFF33"; var txt:Text = new Text(); //给文本的text属性赋值 txt.text = "gggggqqqq...
来源: Laya_社区 发布时间: 20190606
...本进行处理,不处理的话内容有可能超出我们舞台。 Laya.display.text 中所使用的API 参数: ![1](img/1.png) hidden:不显示超出文本域的字符。 visible:不进行任何裁切。 scroll:不显示文本域外的字符像素,并且支持scroll接口。 ```javascript (f...
来源: Laya2.0_文档 发布时间: 20210714
... style = Browser.canvas.source.style; style.display = "none"; style.position = "absolute"; style.direction = "rtl"; //Browser.document.body.style.direction = "rtl"; Render._...
来源: Laya_社区 发布时间: 20180703
...defaultFont = "SimHei" Laya.init(600, 1200, WebGL); var txtName = new laya.display.Text(); txtName.fontSize = 20; txtName.color = "#ffffff"; txtName.align = "center"; txtName.stroke = 2; txtName.text = "设置全局字体无效"; Laya.stage.addChild(txtName); 2017-12-27 添加评论 免费帖 -->...
来源: Laya_社区 发布时间: 20171227
...代码(文档类): --------------------------------package { import laya.display.Text; import laya.net.Loader; import laya.utils.Handler; /** * ... * @author OttoChen */ public class TestMain { private var txt:Text = null; public function TestMain() { Laya.init(800, 800); txt = new Text(); txt.mou...
来源: Laya_社区 发布时间: 20180227