Struct gdnative::DirectionalLight [] [src]

pub struct DirectionalLight { /* fields omitted */ }

core class DirectionalLight : Light (manually managed)

Base class

DirectionalLight inherits Light and all of its methods.

Memory management

Non reference counted objects such as the ones of this type are usually owned by the engine. In the cases where Rust code owns an object of this type, ownership should be either passed to the engine or the object must be manually destroyed using DirectionalLight::free.

Methods

impl DirectionalLight
[src]

[src]

Up-cast.

[src]

Constructor.

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 DirectionalLight::free.

[src]

Manually deallocate the object.

[src]

[src]

[src]

[src]

[src]

Methods from Deref<Target = Light>

[src]

Up-cast.

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl GodotObject for DirectionalLight
[src]

[src]

[src]

[src]

impl Deref for DirectionalLight
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl DerefMut for DirectionalLight
[src]

[src]

Mutably dereferences the value.

Auto Trait Implementations