Added Screen space reflections and Editor UI refactoring

This commit is contained in:
antopilo
2022-01-31 13:54:58 -05:00
parent e216686272
commit b273a2fb8a
78 changed files with 2454 additions and 946 deletions

View File

@@ -5,17 +5,18 @@
#include "ScriptModule.h"
#include <iostream>
#include <wren.h>
namespace Nuake
{
namespace ScriptAPI
{
class EngineModule : public ScriptModule
{
std::string ModuleName = "Engine";
const std::string ModuleName = "Engine";
std::string GetModuleName() override
{
return "Engine";
return ModuleName;
}
void RegisterModule(WrenVM* vm) override