You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
@@ -108,7 +108,7 @@ private:
|
||||
Size2 prev_size;
|
||||
|
||||
Spatial *preview_node;
|
||||
Rect3 *preview_bounds;
|
||||
AABB *preview_bounds;
|
||||
Vector<String> selected_files;
|
||||
AcceptDialog *accept;
|
||||
|
||||
@@ -287,7 +287,7 @@ private:
|
||||
Point2i _get_warped_mouse_motion(const Ref<InputEventMouseMotion> &p_ev_mouse_motion) const;
|
||||
|
||||
Vector3 _get_instance_position(const Point2 &p_pos) const;
|
||||
static Rect3 _calculate_spatial_bounds(const Spatial *p_parent, const Rect3 p_bounds);
|
||||
static AABB _calculate_spatial_bounds(const Spatial *p_parent, const AABB p_bounds);
|
||||
void _create_preview(const Vector<String> &files) const;
|
||||
void _remove_preview();
|
||||
bool _cyclical_dependency_exists(const String &p_target_scene_path, Node *p_desired_node);
|
||||
@@ -314,7 +314,7 @@ public:
|
||||
|
||||
void assign_pending_data_pointers(
|
||||
Spatial *p_preview_node,
|
||||
Rect3 *p_preview_bounds,
|
||||
AABB *p_preview_bounds,
|
||||
AcceptDialog *p_accept);
|
||||
|
||||
Viewport *get_viewport_node() { return viewport; }
|
||||
@@ -327,7 +327,7 @@ class SpatialEditorSelectedItem : public Object {
|
||||
GDCLASS(SpatialEditorSelectedItem, Object);
|
||||
|
||||
public:
|
||||
Rect3 aabb;
|
||||
AABB aabb;
|
||||
Transform original; // original location when moving
|
||||
Transform original_local;
|
||||
Transform last_xform; // last transform
|
||||
@@ -435,7 +435,7 @@ private:
|
||||
|
||||
// Scene drag and drop support
|
||||
Spatial *preview_node;
|
||||
Rect3 preview_bounds;
|
||||
AABB preview_bounds;
|
||||
|
||||
/*
|
||||
struct Selected {
|
||||
|
||||
Reference in New Issue
Block a user