Prop sphere: Difference between revisions
Jump to navigation
Jump to search
Tip:The only spherical model in Half-Life 2 is
Confirm:Not all prop_physics KVs are applicable to this entity. Changing modelscale for example seems to produce effects with the physics.
Bug:The collision mesh will not be visible with the vcollide_wireframe 1 command. [todo tested in ?]
(Note about not all KVs being the same) |
mNo edit summary |
||
Line 5: | Line 5: | ||
{{tip|The only spherical model in Half-Life 2 is <code>models\combine_helicopter\helicopter_bomb01.mdl</code>.}} | {{tip|The only spherical model in Half-Life 2 is <code>models\combine_helicopter\helicopter_bomb01.mdl</code>.}} | ||
{{confirm|Not all prop_physics KVs are applicable to this entity. Changing ''modelscale'' for example seems to | {{confirm|Not all prop_physics KVs are applicable to this entity. Changing ''modelscale'' for example seems to produce effects with the physics.}} | ||
{{bug|The collision mesh will not be visible with the ''[[vcollide_wireframe]] 1'' command.}} | {{bug|The collision mesh will not be visible with the ''[[vcollide_wireframe]] 1'' command.}} | ||
Revision as of 04:50, 19 November 2024
![]() |
---|
CPhysSphere |
![]() |
prop_sphere
is a point entity available in all Source games.
It is essentially a prop_physics with a perfectly spherical VPhysics collision model of 12 units radius. If you want to create a spherical entity, it is far more efficient to use prop_sphere than try to create a spherical collision mesh!

models\combine_helicopter\helicopter_bomb01.mdl
.

Keyvalues
- Radius (radius) <float> (only in
)
- The radius for the sphere.
FGD Code
If you don't intend to make any changes to the entity's C++ code, use this:
@PointClass base(BasePropPhysics, RenderFields) studioprop() = prop_sphere : "Creates a perfect sphere."
[
]