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

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

481. 获取位置信息 · LayaAir3.0文档 · LAYABOX [ 54%]

...roperty } = Laya; @regClass() export class NewScript extends Laya.Script { constructor() { super(); } onMouseClick(evt: Laya.Event): void { // 尝试获取当前位置 Laya.Geolocation.getCurrentPosition( Laya.Handler.create(this, this.onSuccess), Laya.Handler.create(this, this.onError) ); console.l...

来源: Laya3.0_文档 发布时间: 20241014

482. laya.d3.math.Vector2 [ 54%]

...opertypublic var x:NumberX轴坐标yproperty public var y:NumberY轴坐标Constructor DetailVector2()Constructorpublic function Vector2(x:Number = 0, y:Number = 0) 创建一个 Vector2 实例。 Parameters x:Number (default = 0) — X轴坐标。  y:Number (default = 0) — Y轴坐标。 Method De...

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

483. laya.device.geolocation.Geolocation [ 54%]

...y,意味着getCurentPosition()直到位置可用时才会返回信息。 Constructor DetailGeolocation()Constructorpublic function Geolocation()Method DetailclearWatch()method public static function clearWatch(id:int):void 移除watchPosition安装的指定处理器。 Parameters id:intgetCurrentP...

来源: laya_api 发布时间: 20170929

484. laya.device.geolocation.Geolocation [ 54%]

...y,意味着getCurentPosition()直到位置可用时才会返回信息。 Constructor DetailGeolocation()Constructorpublic function Geolocation()Method DetailclearWatch()method public static function clearWatch(id:int):void 移除watchPosition安装的指定处理器。 Parameters id:intgetCurrentP...

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

485. laya.d3.core.reflectionprobe.ReflectionProbe_API3.0 [ 54%]

...于实现反射探针组件 miner Hierarchy Sprite3D ReflectionProbe Index Constructors constructor Properties _extra _isScene _scene _url name TEMPVECTOR3 defaultTextureHDRDecodeValues Accessors active activeInHierarchy boundsMax boundsMin boxProjection components destroyed displayedInStage hideFla...

来源: Laya3.0_api 发布时间: 20231102

486. laya.net.URL [ 54%]

...formatURL格式化后,会自动生成为"aaa/bb.png?v=99"的一个地址Constructor DetailURL()Constructorpublic function URL(url:String)创建一个新的 URL 实例。 Parameters url:StringMethod DetailformatURL()method public static function formatURL(url:String):String 格式化指定的地址...

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

487. 动画节点 · LayaAir3.0文档 · LAYABOX [ 54%]

...type: Laya.Animation }) //在IDE面板中显示属性 ani: Laya.Animation; constructor() { super(); } //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.ani.source = "resources/role.atlas"; //接收动画数据源为图集 thi...

来源: Laya3.0_文档 发布时间: 20241014

488. UI弹窗 · LayaAir3.0文档 · LAYABOX [ 53%]

...N_PADDING: number = 5; private assets: any[]; private dialog: Laya.Dialog; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.assets = ["resources/res/ui/dialog (1).png", "resources/res/ui/clo...

来源: Laya3.0_文档 发布时间: 20230303

489. 输入文本组件 · LayaAir3.0文档 · LAYABOX [ 53%]

...te3D; @property( { type : Laya.TextInput } ) public txtin: Laya.TextInput; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.txtin.pos(Laya.stage.width >> 1, Laya.stage.height >> ...

来源: Laya3.0_文档 发布时间: 20241014

490. 像素线 · LayaAir3.0文档 · LAYABOX [ 53%]

...例。 * @param maxCount 最大线段数量。 * @param name 名字。 */ constructor(maxCount: number = 2, name: string = null) { super(name); this._render = this.addComponent(PixelLineRenderer); this._geometryFilter = (this._render as PixelLineRenderer)._pixelLineFilter; (this._render as PixelLine...

来源: Laya3.0_文档 发布时间: 20241014