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

大约有 2,482 项符合查询结果, 库内数据总量为 31,671 项。 (搜索耗时: 0.0064 秒)

601. laya.d3.graphics.FrustumCulling [ 82%]

...ex | Frames No Frames FrustumCullingMethods Packagelaya.d3.graphicsClasspublic class FrustumCullingInheritanceFrustumCulling Object ... Public Methods  MethodDefined By  FrustumCulling()FrustumCulling  renderObjectCulling(boundFrustum:BoundFrustum, scene:BaseScene, camera:BaseCamera, view:Ma...

来源: laya_api 发布时间: 20170422

602. API里 Tab控件的的内容为什么看不到的 [ 82%]

...什么看不到的 API 里面查看Tab控件的内容,只显示如下: Public Properties Show Inherited Public Properties Protected Properties Show Inherited Protected Properties Public Methods Show Inherited Public Methods Protected Methods Show Inherited Protected Methods Events Show Inherited...

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

603. 自定义组件时,设置组件子节点的image的skin时,路径为layaIde的路径而非项目路径 [ 82%]

...editorUI.Button; import laya.ui.Image; /** * ... * @author Caixiansheng */ public class HProgressSlider extends HSlider { /**@private */ protected var _progress:Image protected var _proMask:Sprite; public function HProgressSlider(skin:String=null) { super(skin); } override protected function initial...

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

604. as3的类里定义的字段编译后会被注释 [ 82%]

...义的字段编译后会被注释 AS3中下面的一个简单的数据类 public class Demo { public var a:int; public var b:String; public function Demo() { } }通过编译后会变成下面的代码class Demo{ constructor (){ //this.a=0; //this.b=null; } }这里字段a和b在编译后会被注释...

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

605. laya.ui.Image [ 82%]

...Frames No Frames ImageProperties | Methods | Events Packagelaya.uiClasspublic class ImageInheritanceImage UIComponent Sprite Node EventDispatcher ObjectSubclasses AdvImage Image 类是用于表示位图图像或绘制图形的显示对象。 Image和Clip组件是唯一支持异步加载的两个...

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

606. Laya.stage.on(Laya.Event.DISPLAY,this,this.ddddd); 无法监听到。 [ 82%]

...上的时候会触发该事件,测试代码如下 主文档类 package { public class TestAir { public function TestAir() { Laya.init(600,400); var aaa:AAA=new AAA(); Laya.stage.addChild(aaa); } } }显示对象类 package { import laya.display.Sprite; import laya.events.Event; public class AAA ext...

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

607. [LayaAirIDE3]2d相机打包后问题 [ 82%]

...ss Main extends Laya.Script {     @property({ type: Laya.Sprite })     public player: Laya.Sprite;      @property({ type: Laya.Sprite })     public joystick: Laya.Sprite;      @property({ type: Laya.Sprite })     public map: Laya.Sprite;      @property({ type: Laya.Sprite })     p...

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

608. 编译常量问题 [ 82%]

...题 我定义了一个常量类  /**   * 时间方面的函数   */   public final class DateUtil  {   //北京时间东八区,故服务器时间要加多八小时   public static const TIME_ZONE:Number = 8*60*60*1000;   /**    * 一天    */   public static const ONE_DAY2:Number...

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

609. laya.ui.ViewStack [ 82%]

...mes No Frames ViewStackProperties | Methods | Events Packagelaya.uiClasspublic class ViewStackInheritanceViewStack Box UIComponent Sprite Node EventDispatcher ObjectImplements IItem ViewStack 类用于视图堆栈类,用于视图的显示等设置处理。 Public Properties Hide Inherited Publi...

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

610. 为什么全局属性赋值后,在另外个函数中调用会自动变成undefined [ 82%]

...局属性赋值后,在另外个函数中调用会自动变成undefined public class MainPageController extends Scene {                  public var camera:Camera;                  public function MainPageController(){             super();         ...

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