[][src]Struct gdnative::api::StaticBody

pub struct StaticBody { /* fields omitted */ }

core class StaticBody inherits PhysicsBody (unsafe).

Official documentation

See the documentation of this class in the Godot engine's official documentation.

Memory management

Non reference counted objects such as the ones of this type are usually owned by the engine.

StaticBody is a reference-only type. Persistent references can only exist in the unsafe Ref<StaticBody> form.

In the cases where Rust code owns an object of this type, for example if the object was just created on the Rust side and not passed to the engine yet, ownership should be either given to the engine or the object must be manually destroyed using Ref::free, or Ref::queue_free if it is a Node.

Class hierarchy

StaticBody inherits methods from:

Safety

All types in the Godot API have "interior mutability" in Rust parlance. To enforce that the official thread-safety guidelines are followed, the typestate pattern is used in the Ref and TRef smart pointers, and the Instance API. The typestate Access in these types tracks whether the access is unique, shared, or exclusive to the current thread. For more information, see the type-level documentation on Ref.

Implementations

impl StaticBody[src]

pub fn new() -> Ref<StaticBody, Unique>[src]

Creates a new instance of this object.

Because this type is not reference counted, the lifetime of the returned object is not automatically managed.

Immediately after creation, the object is owned by the caller, and can be passed to the engine (in which case the engine will be responsible for destroying the object) or destroyed manually using Ref::free, or preferably Ref::queue_free if it is a Node.

pub fn bounce(&self) -> f64[src]

The body's bounciness. Values range from [code]0[/code] (no bounce) to [code]1[/code] (full bounciness).
			Deprecated, use [member PhysicsMaterial.bounce] instead via [member physics_material_override].

pub fn constant_angular_velocity(&self) -> Vector3D<f32, UnknownUnit>[src]

The body's constant angular velocity. This does not rotate the body, but affects other bodies that touch it, as if it was in a state of rotation.

pub fn constant_linear_velocity(&self) -> Vector3D<f32, UnknownUnit>[src]

The body's constant linear velocity. This does not move the body, but affects other bodies that touch it, as if it was in a state of movement.

pub fn friction(&self) -> f64[src]

The body's friction, from 0 (frictionless) to 1 (full friction).
			Deprecated, use [member PhysicsMaterial.friction] instead via [member physics_material_override].

pub fn physics_material_override(&self) -> Option<Ref<PhysicsMaterial, Shared>>[src]

The physics material override for the body.
			If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one.

pub fn set_bounce(&self, bounce: f64)[src]

The body's bounciness. Values range from [code]0[/code] (no bounce) to [code]1[/code] (full bounciness).
			Deprecated, use [member PhysicsMaterial.bounce] instead via [member physics_material_override].

pub fn set_constant_angular_velocity(&self, vel: Vector3D<f32, UnknownUnit>)[src]

The body's constant angular velocity. This does not rotate the body, but affects other bodies that touch it, as if it was in a state of rotation.

pub fn set_constant_linear_velocity(&self, vel: Vector3D<f32, UnknownUnit>)[src]

The body's constant linear velocity. This does not move the body, but affects other bodies that touch it, as if it was in a state of movement.

pub fn set_friction(&self, friction: f64)[src]

The body's friction, from 0 (frictionless) to 1 (full friction).
			Deprecated, use [member PhysicsMaterial.friction] instead via [member physics_material_override].

pub fn set_physics_material_override(
    &self,
    physics_material_override: impl AsArg<PhysicsMaterial>
)
[src]

The physics material override for the body.
			If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one.

Methods from Deref<Target = PhysicsBody>

pub fn add_collision_exception_with(&self, body: impl AsArg<Node>)[src]

Adds a body to the list of bodies that this body can't collide with.

pub fn get_collision_exceptions(&self) -> VariantArray<Shared>[src]

Returns an array of nodes that were added as collision exceptions for this body.

pub fn collision_layer(&self) -> i64[src]

The physics layers this area is in.
			Collidable objects can exist in any of 32 different layers. These layers work like a tagging system, and are not visual. A collidable can use these layers to select with which objects it can collide, using the [member collision_mask] property.
			A contact is detected if object A is in any of the layers that object B scans, or object B is in any layer scanned by object A. See [url=https://docs.godotengine.org/en/latest/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information.

pub fn get_collision_layer_bit(&self, bit: i64) -> bool[src]

Returns an individual bit on the [member collision_layer].

pub fn collision_mask(&self) -> i64[src]

The physics layers this area scans for collisions. See [url=https://docs.godotengine.org/en/latest/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information.

pub fn get_collision_mask_bit(&self, bit: i64) -> bool[src]

Returns an individual bit on the [member collision_mask].

pub fn remove_collision_exception_with(&self, body: impl AsArg<Node>)[src]

Removes a body from the list of bodies that this body can't collide with.

pub fn set_collision_layer(&self, layer: i64)[src]

The physics layers this area is in.
			Collidable objects can exist in any of 32 different layers. These layers work like a tagging system, and are not visual. A collidable can use these layers to select with which objects it can collide, using the [member collision_mask] property.
			A contact is detected if object A is in any of the layers that object B scans, or object B is in any layer scanned by object A. See [url=https://docs.godotengine.org/en/latest/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information.

pub fn set_collision_layer_bit(&self, bit: i64, value: bool)[src]

Sets individual bits on the [member collision_layer] bitmask. Use this if you only need to change one layer's value.

pub fn set_collision_mask(&self, mask: i64)[src]

The physics layers this area scans for collisions. See [url=https://docs.godotengine.org/en/latest/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information.

pub fn set_collision_mask_bit(&self, bit: i64, value: bool)[src]

Sets individual bits on the [member collision_mask] bitmask. Use this if you only need to change one layer's value.

Trait Implementations

impl Debug for StaticBody[src]

impl Deref for StaticBody[src]

type Target = PhysicsBody

The resulting type after dereferencing.

impl DerefMut for StaticBody[src]

impl GodotObject for StaticBody[src]

type RefKind = ManuallyManaged

The memory management kind of this type. This modifies the behavior of the Ref smart pointer. See its type-level documentation for more information. Read more

impl Instanciable for StaticBody[src]

impl QueueFree for StaticBody[src]

impl SubClass<CollisionObject> for StaticBody[src]

impl SubClass<Node> for StaticBody[src]

impl SubClass<Object> for StaticBody[src]

impl SubClass<PhysicsBody> for StaticBody[src]

impl SubClass<Spatial> for StaticBody[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SubClass<T> for T where
    T: GodotObject
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.