大约有 672 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0036 秒)
Laya3.0_api(470) Laya2.0_api(71) Laya3.0_文档(59) laya_api(58) Laya_社区(8) Laya_示例(2) Laya2.0_文档(2) Laya2.0_示例(2)
...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
...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
...y,意味着getCurentPosition()直到位置可用时才会返回信息。 Constructor DetailGeolocation()Constructorpublic function Geolocation()Method DetailclearWatch()method public static function clearWatch(id:int):void 移除watchPosition安装的指定处理器。 Parameters id:intgetCurrentP...
来源: laya_api 发布时间: 20170929
...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
...于实现反射探针组件 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
...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
...type: Laya.Animation }) //在IDE面板中显示属性 ani: Laya.Animation; constructor() { super(); } //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.ani.source = "resources/role.atlas"; //接收动画数据源为图集 thi...
来源: Laya3.0_文档 发布时间: 20241014
...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
...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
...例。 * @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