iInspectable.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * Enum that determines the text-wrapping mode to use.
  3. */
  4. export var InspectableType;
  5. (function (InspectableType) {
  6. /**
  7. * Checkbox for booleans
  8. */
  9. InspectableType[InspectableType["Checkbox"] = 0] = "Checkbox";
  10. /**
  11. * Sliders for numbers
  12. */
  13. InspectableType[InspectableType["Slider"] = 1] = "Slider";
  14. /**
  15. * Vector3
  16. */
  17. InspectableType[InspectableType["Vector3"] = 2] = "Vector3";
  18. /**
  19. * Quaternions
  20. */
  21. InspectableType[InspectableType["Quaternion"] = 3] = "Quaternion";
  22. /**
  23. * Color3
  24. */
  25. InspectableType[InspectableType["Color3"] = 4] = "Color3";
  26. /**
  27. * String
  28. */
  29. InspectableType[InspectableType["String"] = 5] = "String";
  30. /**
  31. * Button
  32. */
  33. InspectableType[InspectableType["Button"] = 6] = "Button";
  34. /**
  35. * Options
  36. */
  37. InspectableType[InspectableType["Options"] = 7] = "Options";
  38. /**
  39. * Tab
  40. */
  41. InspectableType[InspectableType["Tab"] = 8] = "Tab";
  42. /**
  43. * File button
  44. */
  45. InspectableType[InspectableType["FileButton"] = 9] = "FileButton";
  46. /**
  47. * Vector2
  48. */
  49. InspectableType[InspectableType["Vector2"] = 10] = "Vector2";
  50. })(InspectableType || (InspectableType = {}));
  51. //# sourceMappingURL=iInspectable.js.map