S&box Wiki

Revision Difference

PhysicsHullFromRender#544174

<cat>Dev.Model</cat> <title>Collisions, Physics & Surface Types</title> # PhysicsHullFromRender Physics hull from render basically generates a hull mesh for your model from the geometry of the rendered mesh. It usually isn't the best but it is fairly okay for quickly testing things. To add this to your model, simply look for PhysicsHullFromRender on the type browser and simply add it. ![PhysicsHullFromRender](https://i.imgur.com/ARJRV1t.png) If your model contains bones, it will ask you to pick the bone to generate the hull mesh for. For jointed objects note that you should refrain from using automatically generated phys models and go for physics shaped objects like capsules, spheres and boxes. If it is a biped ragdoll note that you can go for either creating a biped ragdoll or creating just ragdoll parts individually. # PhysicsHullFile Another way to add physics to your model is using a prebuilt physics model which you made yourself outside of ModelDoc. This is usually the preferred way to go for porting old assets since you can re-use your old physmodel. To add something like that simply add the following option: ![PhysicsHullFile](https://i.imgur.com/GQrUh1Y.png) This option is going to prompt you to load the model file which you'd like to use as a physics model for your model, once it's added simply compile it and toy around with your model which now has some nice physics. # PhysicsMeshFile <warning>Although this does work with concave meshes THIS TYPE IS NOT FOR PROPS AND ITEMS ingame, it has no simulated physics only collisions, meaning it will be static and unmoveable. Only use it for things like terrain which needs only collisions. For props with more complex collisions or "concave" type collision please navigate below to [Complex Collision Shape](https://wiki.facepunch.com/sbox/PhysicsHullFromRender~edit#complexcollisionshape)</warning> For props with more complex collisions or "concave" type collision please navigate below to [Complex Collision Shape](https://wiki.facepunch.com/sbox/PhysicsHullFromRender#complexcollisionshape)</warning> So this is only used in special cases, since this type physics file type is only used for collisions, meaning it will not be able to be moved once its created and it will not fall or react to gravity and so on, think of it like the collisions when you make a map in hammer. It works exactly like that. so in a case unless you making a gamemode which uses custom terrain which is created and loaded on the fly via code or something, this will not be a common one you will use. ![PhysicsMeshFile](https://i.imgur.com/ZtAcaUL.png) # Complex Collision Shape Let's say you wanted a more complex physics shape rather than a shrink wrap, then you will have to use multiple PhysicsHullFiles to build the complex shape. For example, you want to be able to stand inside of this "box": ![example model](https://i.imgur.com/OBL0kyb.png) Then we need to split the collision into a bunch of individual convex meshes. Here is an example of what it would look like: ![multiple collision meshes](https://i.imgur.com/sJLwj08.gif) Save them all into their own model files and proceed to add PhysicsHullFile for every part of the mesh. You will now have a PhysicsShapeList with multiple PhysicsHullFiles within it. ![example of physicsshapelist](https://i.imgur.com/gMjfl4w.png) You can click through them to check individually or click the PhysicsShapeList to see the final collision model. ![final result](https://i.imgur.com/3J3Vgbc.gif) Now in-game you can get inside of this box, unlike the ones PhysicsHullFromRender makes. Of course, it will also let the model have gravity and collisions too. # Overriding Models Calculated Mass You may see something like this on your PhysicsHulls, don't worry if that isn't right. ![Calculated Mass: way to big or small](https://i.imgur.com/uggIM5R.png) Go to the +Add, search for PhysicsBodyMarkup and add it. ![physicsbodymarkup](https://i.imgur.com/KZvf9rB.png) It will ask you to choose a Target Body, you should just have one if you are making a basic model, so just click the one you see. You will see these options, the only one you gotta care about right now is Mass Override. ![PhysicsBodyMarkup](https://i.imgur.com/mI7UBXO.png) Put an appropriate number in there in KGs and you're good to go. # Changing the Surface Property What surface does your object have? Wood? Metal? Surface Properties will determine the sound it produces and, if any, decals and particles coming off when you hit it. To change it, go into your PhysicsHull / PhysicsHulls and find this option: ![physicshull surface property](https://i.imgur.com/nTykwaD.png) Set it to whatever you want on your mesh. If you have multiple meshes change their Surface Property too. Done! <ambig page="Inspector_-_Decals_SurfaceProperties_&_Sound"> To learn how to make custom Surface Properties please look through here</ambig>