大约有 1,198 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0078 秒)
...1.4 脚本控制Text2. 代码创建Text基础文本(Text) Text继承于Sprite,是静态文本的基础组件。这里我们介绍一下Text专属的组件属性。 1. LayaAir IDE中使用Text 1.1 创建Text 如图1-1所示,可以在层级窗口中右键进行创建,也可以从小部件窗...
来源: Laya3.0_文档 发布时间: 20241014
...iClasspublic class TextAreaInheritanceTextArea TextInput Label UIComponent Sprite Node EventDispatcher Object TextArea 类用于创建显示对象以显示和输入文本。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By active : Boolean 获...
来源: Laya2.0_api 发布时间: 20190513
...效果 2.3 使用代码设置 //创建点光源 let pointLight = new Laya.Sprite3D(); let pointCom = pointLight.addComponent(Laya.PointLightCom); this.scene.addChild(pointLight); //点光源的颜色 pointCom.color = new Laya.Color(1.0, 0.5, 0.0, 1); //设置点光源的范围 pointCom.range = 3.0; ...
来源: Laya3.0_文档 发布时间: 20241014
...gelaya.uiClasspublic class TextInputInheritanceTextInput Label UIComponent Sprite Node EventDispatcher ObjectSubclasses TextArea TextInput 类用于创建显示对象以显示和输入文本。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By a...
来源: Laya2.0_api 发布时间: 20190513
...坐标为负数时(已经找到问题) package { import laya.display.Sprite; import laya.events.Event; public class MainUi extends Sprite { private var testPan:Sprite; public function MainUi() { super(); this.graphics.drawRect(0,0,500,500,"#fff0cc"); testPan = new Sprite(); testPan.name = "testP...
来源: Laya_社区 发布时间: 20161124
...: 2020-12-03 10:55 浏览: 1603 关注: 4 人 kezhiyu • 2018-05-29 14:06 sprite.drawToCanvas 查看这个api,但是要注意,里面的像素的是上下颠倒的 135*****695 • 2019-10-05 11:13 2.0版本支持了吧
来源: Laya_社区 发布时间: 20170412
...ient.addColorStop(0,"#FF0000"); my_gradient.addColorStop(1,"#0000FF"); let sprite = new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.graphics.drawRect(0,0,640,1136,my_gradient); 2018-09-06 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发...
来源: Laya_社区 发布时间: 20180904
2.0中如何移动一组静态刚体? 我在一个sprite A下创建了一组静态刚体 如果A上没有刚体 移动A后子刚体不移动 但是子刚体的sprite跟着移动 子刚体发生碰撞后对应sprite回归原位 如果A上有刚体 移动A后子刚体不移动但是对应spri...
来源: Laya_社区 发布时间: 20190212
请问2D怎么做镜头拉近、拉远的效果?对Sprite进行缩放不是我想要的。 不希望缩放根节点的,否则全局坐标会变化,会扰乱正常的逻辑。 有没有类似相机缩放的接口? 2018-03-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20180331
...线,示例代码如下: ```javascript module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import WebGL = Laya.WebGL; export class Sprite_DrawShapes { private sp: Sprite; constructor() ...
来源: Laya2.0_文档 发布时间: 20210714