update
This commit is contained in:
parent
3e8a27fbcf
commit
9657ac63c3
@ -2,7 +2,7 @@
|
||||
#include "render/renderapi.h"
|
||||
#include "render/window.h"
|
||||
#include "object/mesh/actor.h"
|
||||
#include "object/property/actor_property.h"
|
||||
#include "data/property/actor_property.h"
|
||||
#include "asset/asset_manager.h"
|
||||
#include "object/scene/scene_manager.h"
|
||||
namespace engineapi {
|
||||
|
||||
0
engine/src/engine/data/global.cpp
Normal file
0
engine/src/engine/data/global.cpp
Normal file
7
engine/src/engine/data/global.h
Normal file
7
engine/src/engine/data/global.h
Normal file
@ -0,0 +1,7 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
using std::string;
|
||||
namespace engineapi
|
||||
{
|
||||
|
||||
}
|
||||
0
engine/src/engine/data/project_setting.cpp
Normal file
0
engine/src/engine/data/project_setting.cpp
Normal file
32
engine/src/engine/data/project_setting.h
Normal file
32
engine/src/engine/data/project_setting.h
Normal file
@ -0,0 +1,32 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include "asset/render/asset_enum.h"
|
||||
using std::string;
|
||||
namespace engineapi
|
||||
{
|
||||
struct ProjectSetting {
|
||||
public:
|
||||
string path;
|
||||
string defaultScene;
|
||||
RenderPipelineType renderPipelineType;
|
||||
unsigned int width;
|
||||
unsigned int height;
|
||||
bool enableDynamicBatch;
|
||||
bool preserveIntermediateShader;
|
||||
bool enableGraphicsDebug;
|
||||
bool logToFile;
|
||||
bool stablePhysics;
|
||||
|
||||
// Editor
|
||||
unsigned int hierarchyWidth;
|
||||
unsigned int hierarchyHeight;
|
||||
unsigned int consoleWidth;
|
||||
unsigned int consoleHeight;
|
||||
unsigned int projectWidth;
|
||||
unsigned int projectHeight;
|
||||
unsigned int inspectorWidth;
|
||||
unsigned int inspectorHeight;
|
||||
unsigned int mainBarWidth;
|
||||
unsigned int mainBarHeight;
|
||||
};
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
#include "actor.h"
|
||||
#include "asset/asset_manager.h"
|
||||
#include "../property/actor_property.h"
|
||||
#include "data/property/actor_property.h"
|
||||
namespace engineapi {
|
||||
ActorMesh::ActorMesh(Model& model, ActorProperty& property)
|
||||
:DynamicMesh(model)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user