Skip to content

Commit 8232785

Browse files
committed
Add Projection
1 parent d9a5d4b commit 8232785

File tree

5 files changed

+447
-2
lines changed

5 files changed

+447
-2
lines changed

godot-core/src/builtin/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ pub use math::*;
4343
pub use node_path::*;
4444
pub use others::*;
4545
pub use packed_array::*;
46+
pub use projection::*;
4647
pub use quaternion::*;
4748
pub use string::*;
4849
pub use string_name::*;
@@ -89,6 +90,7 @@ mod math;
8990
mod node_path;
9091
mod others;
9192
mod packed_array;
93+
mod projection;
9294
mod quaternion;
9395
mod string;
9496
mod string_name;

godot-core/src/builtin/others.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ impl_builtin_stub!(Rect2, OpaqueRect2);
1717
impl_builtin_stub!(Rect2i, OpaqueRect2i);
1818
impl_builtin_stub!(Plane, OpaquePlane);
1919
impl_builtin_stub!(Aabb, OpaqueAabb);
20-
impl_builtin_stub!(Projection, OpaqueProjection);
2120
impl_builtin_stub!(Rid, OpaqueRid);
2221
impl_builtin_stub!(Callable, OpaqueCallable);
2322
impl_builtin_stub!(Signal, OpaqueSignal);

0 commit comments

Comments
 (0)