Editor: Physical Component
Description
A PhysicalComponent
is the default class for all physics components in a simulation. It is the skeleton for all reaction wheels, sensors, computers and other components present in the Editor. You can configure thermal properties, mass properties as well as EM signature properties.
If you are building a group of static components that don’t involve any complex physics or mathematical models (ex: Chassis, bolts, frames) - you can use PhysicalComponent
to achieve that. Otherwise, you should use the sub-classes for any other complex models (ex: HRB, Earth Horizon Sensor, Thrusters).
Building a Chassis Model
There are only a few key areas in our PhysicalComponent
blueprint to build a chassis.
- The
Components
panel in the top left allows us to add any meshes with aStaticMesh
or sub-components using aChildActorComponent
. For building a chassis, you only need aStaticMesh
component and assign the 3D model using the details panel. - The
Viewport
panels allow you to visualize the component with all the meshes attached to it. Make sure your component is placed at the centre of the blueprint. - The final step is to edit the blueprint’s initial values in the
Details
panel. This involves any mass, centre of mass, and thermal and packaging information for your component. This will ensure your component will behave as expected in the simulation.