babylon.light.d.ts 357 B

1234567891011121314151617
  1. /// <reference path="../babylon.d.ts" />
  2. declare module BABYLON {
  3. class Light {
  4. name: string;
  5. id: string;
  6. constructor(name: string, scene: Scene);
  7. intensity: number;
  8. isEnabled: boolean;
  9. getScene(): Scene;
  10. getShadowGenerator: ShadowGenerator;
  11. dispose(): void;
  12. }
  13. }