Part
Last updated
Last updated
A Part is the most fundamental element that makes up the world of OVERDARE. All visual objects placed in the world consist of Parts and MeshParts. A Part defines the appearance of an object through various properties such as position, rotation, size, color, and texture, and it can also define physical properties such as gravity, friction, and collision.
Parts are world objects provided in basic shapes such as cubes, spheres, and cylinders. Creators can use these basic shapes to construct and arrange models.
Part properties are broadly categorized into three types.
CastShadow: Determines whether the Part casts a shadow.
Shape: Sets the basic shape of the Part (e.g., box, sphere, cylinder).
Color: Sets the color of the Part.
Material: Defines the surface texture of the Part (e.g., plastic, metal).
Transparency: Adjusts the transparency of the Part.
CFrame
Position: Defines the Part’s world coordinates.
Orientation: Sets the rotation direction of the Part.
Size: Adjusts the size of the Part.
Anchored: Fixes the Part in place to prevent movement.
CanCollide: Determines whether the Part collides with other objects.
Massless: Specifies whether the Part’s mass is ignored in physics simulations.
CFrame stands for Coordinate Frame and is a data type that includes an object’s position and orientation information.
CFrame is used to position or rotate objects in 3D space. For example, it can place an object at a specific location while orienting it in a certain direction.
CFrame.Position extracts only the position of an object from CFrame and is represented as a Vector3 data type.
CFrame has the following characteristics:
Can handle both position and orientation simultaneously.
Allows an object to face a specific direction.
Example: CFrame.new(startPosition, targetPosition)
Efficient in terms of performance and suitable for various mathematical operations (e.g. applying offsets and linear interpolation.)
Origin represents the pivot point of an object, serving as its default rotation center.
Origin exists separately from CFrame and is mainly used to adjust or reference the pivot position of a Model or Part.
The Origin information can be manipulated using the PivotTo() function or the GetPivot() function. These functions allow adjusting an object’s position and rotation based on its pivot point.
Origin has the following characteristics:
The pivot point may not always be the object’s center (it can be manually set).
Useful for moving or rotating all objects under a parent Model.
Cannot be directly modified via scripts but can be adjusted indirectly using functions like PivotTo().
In OVERDARE Studio, Parts can be added by clicking the Home - Add button and selecting the desired shape.
A placed Part can have its shape easily changed without being deleted by modifying the Shape property in the Properties window.