This article's documentation is for anything that uses the Source engine. Click here for more information.

Simple physics brush: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(-codeonly, note edit)
No edit summary
Line 2: Line 2:
{{CD|CSimplePhysicsBrush|file1=physobj.cpp}}
{{CD|CSimplePhysicsBrush|file1=physobj.cpp}}
{{this is a|brush entity|name=simple_physics_brush}} It is a simple physics brush with no unique properties. Brush entities converted by {{ent|phys_convert}} are turned into this entity. Doesn't have any physics when spawned by other means.
{{this is a|brush entity|name=simple_physics_brush}} It is a simple physics brush with no unique properties. Brush entities converted by {{ent|phys_convert}} are turned into this entity. Doesn't have any physics when spawned by other means.
{{note|If placed manually using Hammer, the entity will spawn suspended in mid-air and without any solidity. If you want physical brush use a phys_convert on a {{ent|func_brush}}, or just use a {{ent|func_physbox}}.}}
{{note|If placed manually using Hammer, the entity will spawn suspended in mid-air and without any solidity. If you want physical brush, just use a {{ent|func_physbox}}.}}


==See also==
==See also==
* {{ent|func_physbox}} - Conventional physics brush
* {{ent|func_physbox}} - Conventional physics brush
* {{ent|simple_physics_prop}} - Prop counterpart
* {{ent|simple_physics_prop}} - Prop counterpart

Revision as of 12:39, 11 September 2024

Icon-NotInFGD.png
This entity is not in the FGD by default.
It should not be put directly in a map because it can only be configured through code.
C++ Class hierarchy
CSimplePhysicsBrush
CBaseEntity
C++ physobj.cpp

simple_physics_brush is a brush entity available in all Source Source games. It is a simple physics brush with no unique properties. Brush entities converted by phys_convert are turned into this entity. Doesn't have any physics when spawned by other means.

Note.pngNote:If placed manually using Hammer, the entity will spawn suspended in mid-air and without any solidity. If you want physical brush, just use a func_physbox.

See also