mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-25 18:39:18 +01:00
Moved more includes to cpp files.
This commit is contained in:
parent
5997c7dc4d
commit
84d139213d
@ -38,6 +38,8 @@
|
|||||||
#include "scene/gui/menu_button.h"
|
#include "scene/gui/menu_button.h"
|
||||||
#include "scene/gui/panel.h"
|
#include "scene/gui/panel.h"
|
||||||
#include "scene/main/viewport.h"
|
#include "scene/main/viewport.h"
|
||||||
|
#include "scene/animation/animation_player.h"
|
||||||
|
#include "scene/3d/skeleton.h"
|
||||||
|
|
||||||
void AnimationTreePlayerEditor::edit(AnimationTreePlayer *p_anim_tree) {
|
void AnimationTreePlayerEditor::edit(AnimationTreePlayer *p_anim_tree) {
|
||||||
anim_tree = p_anim_tree;
|
anim_tree = p_anim_tree;
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
|
|
||||||
class World;
|
class World;
|
||||||
class Camera;
|
class Camera;
|
||||||
|
|
||||||
class VisibilityNotifier : public CullInstance {
|
class VisibilityNotifier : public CullInstance {
|
||||||
GDCLASS(VisibilityNotifier, CullInstance);
|
GDCLASS(VisibilityNotifier, CullInstance);
|
||||||
|
|
||||||
|
@ -34,6 +34,10 @@
|
|||||||
#include "core/os/os.h"
|
#include "core/os/os.h"
|
||||||
#include "scene/scene_string_names.h"
|
#include "scene/scene_string_names.h"
|
||||||
|
|
||||||
|
#include "scene/3d/skeleton.h"
|
||||||
|
#include "scene/3d/spatial.h"
|
||||||
|
#include "scene/resources/animation.h"
|
||||||
|
|
||||||
void AnimationTreePlayer::set_animation_process_mode(AnimationProcessMode p_mode) {
|
void AnimationTreePlayer::set_animation_process_mode(AnimationProcessMode p_mode) {
|
||||||
if (animation_process_mode == p_mode) {
|
if (animation_process_mode == p_mode) {
|
||||||
return;
|
return;
|
||||||
|
@ -31,11 +31,13 @@
|
|||||||
#ifndef ANIMATION_TREE_PLAYER_H
|
#ifndef ANIMATION_TREE_PLAYER_H
|
||||||
#define ANIMATION_TREE_PLAYER_H
|
#define ANIMATION_TREE_PLAYER_H
|
||||||
|
|
||||||
#include "animation_player.h"
|
#include "scene/main/node.h"
|
||||||
#include "scene/3d/skeleton.h"
|
|
||||||
#include "scene/3d/spatial.h"
|
|
||||||
#include "scene/resources/animation.h"
|
#include "scene/resources/animation.h"
|
||||||
|
|
||||||
|
class Spatial;
|
||||||
|
class Skeleton;
|
||||||
|
class Animation;
|
||||||
|
|
||||||
class AnimationTreePlayer : public Node {
|
class AnimationTreePlayer : public Node {
|
||||||
GDCLASS(AnimationTreePlayer, Node);
|
GDCLASS(AnimationTreePlayer, Node);
|
||||||
OBJ_CATEGORY("Animation Nodes");
|
OBJ_CATEGORY("Animation Nodes");
|
||||||
|
Loading…
Reference in New Issue
Block a user