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

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

411. 下面这段unity碰撞代码如何用laya2.0物理引擎实现 [ 77%]

下面这段unity碰撞代码如何用laya2.0物理引擎实现 private void OnCollisionEnter2D(Collision2D collision) {     if (collision.gameObject.tag != Constants.TagPlayer)     {         return;     }     float num = 0f;     foreach (ContactPoint2D contac...

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

412. Native下http请求,Error事件中的error对象错误码全都是404 [ 77%]

...rrorHandler); this.hr.send($url, $data, $method, $responseType, $headers); private function onHrCompleteHandler():void { if(this.completeHandler) { this.completeHandler.runWith(this.hr.data); } } private function onHrErrorHandler($error:String):void { if(this.errorHandler) { this.errorHandler.runWit...

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

413. 文本-Overflow [ 77%]

...Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createTexts(); } private createTexts(): void { var t1: Text = this.createText(); t1.overflow = Text.VISIBLE; t1.pos(10, 10); var t2: Text = this.createText(); t2.overflow = Text.SCROLL; t2.pos(10, 110); var t3: Text = this.createText(); t3.ov...

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

414. 绘制三角形、多边形及根据数据绘制图案(ActionScript-LayaAir基础篇(AS3)-矢量图) [ 77%]

...        public class Sprite_DrawShapes     {         private var sp:Sprite;                    public function Sprite_DrawShapes()         {             Laya.init(500, 300, WebGL);             drawSomething();       ...

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

415. 灯光-点光 [ 77%]

...ion); pointLight.transform.position = _position; });class PointLightDemo { private scene: Laya.Scene; private _position: Laya.Vector3; private _quaternion: Laya.Quaternion; constructor() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREE...

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

416. Laya.Sprite loadImage 参数问题 [ 77%]

...eRedFilter(); //灰色滤镜 this.createGrayFilter(); } /**创建位图**/ private createImg(w:number,h:number):Laya.Sprite{ var Img:Laya.Sprite = new Laya.Sprite(); //添加到舞台 Laya.stage.addChild(Img); //加载显示图片 Img.loadImage("res/img/monkey1.png", w, h);//报错 return Img; } /**...

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

417. Laya3.0正式版spine3.8的动画资源不能正常显示 [ 77%]

...ss, property } = Laya; @regClass() export class Main extends Laya.Script { private skeleton: SpineSkeleton; private index: number = -1; public pageWidth: number; public pageHeight: number; onStart() { console.log("Game start"); Laya.loader.load("resources/res/spineboy-pma.skel", Loader.SPINE).then((...

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

418. Sprite-绘制各种形状 [ 77%]

... = Laya.Stage; import WebGL = Laya.WebGL; export class Sprite_DrawShapes { private sp: Sprite; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(740, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya....

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

419. 怎么在不同时间显示MovieClip的多个实例 [ 77%]

怎么在不同时间显示MovieClip的多个实例 private var i:int; private var ani_planet:MovieClip; private function onBtnClick(e:Event):void { ani_planet = new MovieClip(); ani_planet.pivotY = ani_planet.pivotX = 350; ani_planet.x = Laya.stage.width/2; ani_planet.load("1.swf",true); ani_plane...

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

420. Animation创建和销毁的问题 [ 77%]

...就不显示了,以下是代码部分 环境:1.7.17_Beta 语言:as3 private var testAnim1:Animation; private var testAnim2:Animation; public function LayaSample() { //初始化引擎 Laya.init(1136, 640,WebGL); trace("ok..."); Laya.stage.on(Event.KEY_DOWN, this, this.onKeydown); } private func...

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