0xc3 hace 3 semanas
padre
commit
6761a6fef3
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4 4
      src/cmd/sandbox/main.odin

+ 4 - 4
src/cmd/sandbox/main.odin

@@ -31,7 +31,7 @@ INVENTORY_SIZE :: INVENTORY_COLS * INVENTORY_ROWS
 
 // UI Constants (Light / Flat Style)
 UI_ROUNDNESS :: 0.0
-UI_COLOR_WINDOW_BG :: [4]f32{0.92, 0.92, 0.92, 0.95}
+UI_COLOR_WINDOW_BG :: [4]f32{0.92, 0.92, 0.92, 1.0}
 UI_COLOR_SLOT_BG :: [4]f32{0.82, 0.82, 0.82, 1.0}
 UI_COLOR_SLOT_HOVER :: [4]f32{0.75, 0.75, 0.75, 1.0}
 UI_COLOR_BORDER :: [4]f32{0.6, 0.6, 0.6, 1.0}
@@ -1015,9 +1015,9 @@ main :: proc() {
 			frame_cb = frame,
 			cleanup_cb = cleanup,
 			event_cb = event,
-			width = 1280,
-			height = 720,
-			window_title = "Sokol 3D Builder (Native UI)",
+			width = 1920,
+			height = 1080,
+			window_title = "Sandbox (Dev)",
 			icon = {sokol_default = true},
 			logger = {func = slog.func},
 			high_dpi = true,