Rename CSGPrimitive3D.invert_faces to flip_faces

This commit is contained in:
hoontee
2022-05-06 20:51:46 -05:00
parent bb73dafe37
commit b869ec7262
4 changed files with 26 additions and 26 deletions

View File

@@ -171,13 +171,13 @@ class CSGPrimitive3D : public CSGShape3D {
GDCLASS(CSGPrimitive3D, CSGShape3D);
protected:
bool invert_faces;
bool flip_faces;
CSGBrush *_create_brush_from_arrays(const Vector<Vector3> &p_vertices, const Vector<Vector2> &p_uv, const Vector<bool> &p_smooth, const Vector<Ref<Material>> &p_materials);
static void _bind_methods();
public:
void set_invert_faces(bool p_invert);
bool is_inverting_faces();
void set_flip_faces(bool p_invert);
bool get_flip_faces();
CSGPrimitive3D();
};