summaryrefslogtreecommitdiff
path: root/scene/3d/decal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scene/3d/decal.cpp')
-rw-r--r--scene/3d/decal.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/scene/3d/decal.cpp b/scene/3d/decal.cpp
index 4c824aedc4..b97859f44a 100644
--- a/scene/3d/decal.cpp
+++ b/scene/3d/decal.cpp
@@ -134,19 +134,16 @@ uint32_t Decal::get_cull_mask() const {
}
AABB Decal::get_aabb() const {
-
AABB aabb;
aabb.position = -extents;
aabb.size = extents * 2.0;
return aabb;
}
Vector<Face3> Decal::get_faces(uint32_t p_usage_flags) const {
-
return Vector<Face3>();
}
void Decal::_bind_methods() {
-
ClassDB::bind_method(D_METHOD("set_extents", "extents"), &Decal::set_extents);
ClassDB::bind_method(D_METHOD("get_extents"), &Decal::get_extents);
@@ -212,7 +209,6 @@ void Decal::_bind_methods() {
}
Decal::Decal() {
-
extents = Vector3(1, 1, 1);
emission_energy = 1.0;
modulate = Color(1, 1, 1, 1);
@@ -230,6 +226,5 @@ Decal::Decal() {
}
Decal::~Decal() {
-
RS::get_singleton()->free(decal);
}