@needle-tools/engine
Version:
Needle Engine is a web-based runtime for 3D apps. It runs on your machine for development with great integrations into editors like Unity or Blender - and can be deployed onto any device! It is flexible, extensible and networking and XR are built-in.
20 lines (19 loc) • 544 B
TypeScript
import { Behaviour } from "../Component.js";
import { type ICanvasGroup } from "./Interfaces.js";
/**
* @category User Interface
* @group Components
*/
export declare class CanvasGroup extends Behaviour implements ICanvasGroup {
get alpha(): number;
set alpha(val: number);
get isCanvasGroup(): boolean;
private _alpha;
interactable: boolean;
blocksRaycasts: boolean;
private _isDirty;
private markDirty;
private applyChangesDelayed;
private _buffer;
private applyChangesNow;
}