profiles.tscript 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. singleton GuiControlProfile(AssetBrowserProtoProfile : ToolsGuiDefaultProfile)
  2. {
  3. fillcolor = EditorSettings.value("Theme/windowBackgroundColor");
  4. fillColorHL = EditorSettings.value("Theme/fieldBGHLColor");
  5. fillColorSEL = EditorSettings.value("Theme/fieldBGSELColor");
  6. fillColorERR = "128 0 0 255";
  7. border = true;
  8. borderColor = "230 126 0 255";
  9. borderColorHL = "128 128 128 255";
  10. borderColorSEL = "230 230 230 255";
  11. borderColorERR = "255 0 0 255";
  12. borderColorNA = "230 126 0 255";
  13. borderThickness = 3;
  14. };
  15. singleton GuiControlProfile(AssetBrowserPreviewImageAsset : AssetBrowserProtoProfile)
  16. {
  17. borderColor = "230 126 0 255";
  18. };
  19. singleton GuiControlProfile(AssetBrowserPreviewMaterialAsset : AssetBrowserProtoProfile)
  20. {
  21. borderColor = "0 100 0 255";
  22. };
  23. singleton GuiControlProfile(AssetBrowserPreviewShapeAsset : AssetBrowserProtoProfile)
  24. {
  25. borderColor = "0 0 200 255";
  26. };
  27. singleton GuiControlProfile(AssetBrowserPreviewShapeAnimationAsset : AssetBrowserProtoProfile)
  28. {
  29. borderColor = "0 0 200 255";
  30. };
  31. singleton GuiControlProfile(AssetBrowserPreviewSoundAsset : AssetBrowserProtoProfile)
  32. {
  33. borderColor = "75 101 135 255";
  34. };
  35. singleton GuiControlProfile(AssetBrowserPreviewTerrainAsset : AssetBrowserProtoProfile)
  36. {
  37. borderColor = "200 198 198 255";
  38. };
  39. singleton GuiControlProfile(AssetBrowserPreviewTerrainMaterialAsset : AssetBrowserProtoProfile)
  40. {
  41. borderColor = "200 198 198 255";
  42. };
  43. singleton GuiControlProfile(AssetBrowserPreviewStateMachineAsset : AssetBrowserProtoProfile)
  44. {
  45. borderColor = "0 76 135 255";
  46. };
  47. singleton GuiControlProfile(AssetBrowserPreviewGUIAsset : AssetBrowserProtoProfile)
  48. {
  49. borderColor = "17 5 44 255";
  50. };
  51. singleton GuiControlProfile(AssetBrowserPreviewLevelAsset : AssetBrowserProtoProfile)
  52. {
  53. borderColor = "0 208 186 255";
  54. };