nodeMaterialWellKnownValues.ts 478 B

12345678910111213141516171819
  1. /**
  2. * Enum used to define well known values e.g. values automatically provided by the system
  3. */
  4. export enum NodeMaterialWellKnownValues {
  5. /** World */
  6. World = 1,
  7. /** View */
  8. View = 2,
  9. /** Projection */
  10. Projection = 3,
  11. /** ViewProjection */
  12. ViewProjection = 4,
  13. /** WorldView */
  14. WorldView = 5,
  15. /** WorldViewProjection */
  16. WorldViewProjection = 6,
  17. /** Will be filled by the block itself */
  18. BlockBased = 7
  19. }