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

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

931. Sprite-缓存为静态图像 [ 46%]

...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

932. Unity导出有光照贴图时,出现错误:ArgumentException: Invalid path [ 46%]

...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

933. Laya.loader.load 教程代码出错 [ 46%]

...        private var img:Sprite ;         private var index:int ;         public function LayaSample() {             //初始化引擎             Laya.init(600, 300);                          img = new Sprite();         ...

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

934. 计时器-延迟调用 [ 46%]

...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

935. laya.physics.joint.MotorJoint [ 46%]

...entationAll Packages | All Classes | Index | Frames No Frames MotorJointProperties | Methods Packagelaya.physics.jointClasspublic class MotorJointInheritanceMotorJoint JointBase Component Object 马达关节:用来限制两个刚体,使其相对位置和角度保持不变 Public Properti...

来源: Laya2.0_api 发布时间: 20190513

936. Sprite-缓存为静态图像 [ 46%]

...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

937. laya.d3.component.physics.BoxCollider [ 46%]

...。 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

938. laya.d3.component.physics.SphereCollider [ 46%]

...。 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

939. 问一下tween的一些参数怎么设置 [ 46%]

...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

940. 同一个Animation,创建多个实例只能显示一个(测试项目已上传) [ 46%]

...官方微信飞机结构类似)  问题截图:   代码:for (var i:int=0;i&lt;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