大约有 1,054 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0043 秒)
Laya_社区(387) Laya2.0_api(241) laya_api(189) Laya2.0_文档(81) Laya_示例(65) Laya2.0_示例(51) Laya3.0_api(32) Laya3.0_文档(8)
...Box:Sprite = new Sprite(); // 随机摆放文本 var text:Text; for (var i:int = 0; i < 1000; i++) { text = new Text(); text.fontSize = 20; text.text = (Math.random() * 100).toFixed(0); text.rotation = Math.random() * 360; text.color = "#CCCCCC"; text.x = Math.random() * Laya.stage.width; text.y = M...
来源: Laya_示例 发布时间: 20241126
...etData (System.String lastname) LayaAir3D.exportResource (Boolean isDebug, Int32 Platformindex, System.String lastname) (at Assets/LayaAir3D/LayaTool/LayaAir3D.cs:430) LayaAir3D.OnGUI () (at Assets/LayaAir3D/LayaTool/LayaAir3D.cs:308) System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFl...
来源: Laya_社区 发布时间: 20181014
... private var img:Sprite ; private var index:int ; public function LayaSample() { //初始化引擎 Laya.init(600, 300); img = new Sprite(); ...
来源: Laya_社区 发布时间: 20170918
...232628"; demonstrate(); } private function demonstrate():void { for (var i:int = 0; i < 10; i++) { Laya.timer.callLater(this, onCallLater); } } private function onCallLater(e:*=null):void { trace("onCallLater triggered"); var text:Text = new Text(); text.font = "SimHei"; text.fontSize = 30; text.col...
来源: Laya2.0_示例 发布时间: 20241126
...entationAll Packages | All Classes | Index | Frames No Frames MotorJointProperties | Methods Packagelaya.physics.jointClasspublic class MotorJointInheritanceMotorJoint JointBase Component Object 马达关节:用来限制两个刚体,使其相对位置和角度保持不变 Public Properti...
来源: Laya2.0_api 发布时间: 20190513
...Box:Sprite = new Sprite(); // 随机摆放文本 var text:Text; for (var i:int = 0; i < 1000; i++) { text = new Text(); text.fontSize = 20; text.text = (Math.random() * 100).toFixed(0); text.rotation = Math.random() * 360; text.color = "#CCCCCC"; text.x = Math.random() * Laya.stage.width; text.y = M...
来源: Laya2.0_示例 发布时间: 20241126
...。 Component3D enable : Boolean 获取是否启用。 Component3D id : int[read-only] 获取唯一标识ID。 Component3D isSingleton : Boolean[override] [read-only] 获取是否为单实例组件。 Collider owner : ComponentNode[read-only] 获取所属Sprite3D节点。 Component3D size : V...
来源: laya_api 发布时间: 20170929
...。 Component3D enable : Boolean 获取是否启用。 Component3D id : int[read-only] 获取唯一标识ID。 Component3D isSingleton : Boolean[override] [read-only] 获取是否为单实例组件。 Collider owner : ComponentNode[read-only] 获取所属Sprite3D节点。 Component3D radius :...
来源: laya_api 发布时间: 20170929
...s.Tween; public class LayaAirDemo { private var sp:Sprite; private var num:int; public function LayaAirDemo() { Laya.init(550,400); sp=new Sprite(); sp.graphics.drawCircle(0,0,50,"#00FFFF"); Laya.stage.addChild(sp); sp.pos(100,100); Tween.to(sp,{x:500},1000,Ease.backIn,Handler.create(this,onTween1))...
来源: Laya_社区 发布时间: 20160913
...官方微信飞机结构类似) 问题截图: 代码:for (var i:int=0;i<10;i++){ var p:wheel=Pool.getItemByClass("wheel", wheel); p.pos(i*90+100,200); p.init(); roleLayer.addChild(p) } /////////////wheelas.as public function wheel(){ this.graphics.drawCircle(0...
来源: Laya_社区 发布时间: 20190312