seta menu_sandbox_edit_scale 1
seta menu_sandbox_edit_physics 1
seta menu_sandbox_edit_force 1
-seta menu_sandbox_edit_material 1
+seta menu_sandbox_edit_material 0
alias menu_showsandboxtools "menu_cmd directmenu SandboxTools"
bind f7 menu_showsandboxtools
.string object_clipboard;
.float material;
+const float MATERIAL_NONE = 0;
const float MATERIAL_METAL = 1;
const float MATERIAL_STONE = 2;
const float MATERIAL_WOOD = 3;
e.movetype = MOVETYPE_TOSS;
e.frame = 0;
e.skin = 0;
- e.material = MATERIAL_METAL;
+ e.material = MATERIAL_NONE;
e.touch = sandbox_Object_Touch;