├── .gitignore ├── LICENSE ├── PSAGameNodesEditor.sln ├── PSAGameNodesEditor ├── ExternalDepLibrary │ ├── ImGuiForOpenGL │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_opengl2.cpp │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_opengl3_loader.h │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ ├── imstb_truetype.h │ │ └── misc │ │ │ ├── README.txt │ │ │ ├── cpp │ │ │ ├── README.txt │ │ │ ├── imgui_stdlib.cpp │ │ │ └── imgui_stdlib.h │ │ │ ├── debuggers │ │ │ ├── README.txt │ │ │ ├── imgui.gdb │ │ │ ├── imgui.natstepfilter │ │ │ └── imgui.natvis │ │ │ ├── fonts │ │ │ ├── Cousine-Regular.ttf │ │ │ ├── DroidSans.ttf │ │ │ ├── Karla-Regular.ttf │ │ │ ├── ProggyClean.ttf │ │ │ ├── ProggyTiny.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ └── binary_to_compressed_c.cpp │ │ │ ├── freetype │ │ │ ├── README.md │ │ │ ├── imgui_freetype.cpp │ │ │ └── imgui_freetype.h │ │ │ └── single_file │ │ │ └── imgui_single_file.h │ ├── ImNodes │ │ ├── imnodes.cpp │ │ ├── imnodes.h │ │ └── imnodes_internal.h │ ├── OpenGLglew │ │ ├── bin │ │ │ └── Release │ │ │ │ ├── Win32 │ │ │ │ └── glew32.dll │ │ │ │ └── x64 │ │ │ │ └── glew32.dll │ │ ├── include │ │ │ └── GL │ │ │ │ ├── eglew.h │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ └── lib │ │ │ └── Release │ │ │ ├── Win32 │ │ │ ├── glew32.lib │ │ │ └── glew32s.lib │ │ │ └── x64 │ │ │ ├── glew32.lib │ │ │ └── glew32s.lib │ ├── OpenGLglfw │ │ ├── include │ │ │ └── GLFW │ │ │ │ ├── glext.h │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ └── lib-vc2019 │ │ │ ├── glfw3.dll │ │ │ ├── glfw3.lib │ │ │ ├── glfw3_mt.lib │ │ │ └── glfw3dll.lib │ ├── RapidJSON │ │ └── include │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── clzll.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ ├── uri.h │ │ │ └── writer.h │ ├── STBimageLoader │ │ ├── stb_image.h │ │ └── stb_image_write.h │ └── imgui_bloom_src │ │ ├── opengl_imgui_bloom.cpp │ │ ├── opengl_imgui_bloom.h │ │ └── opengl_imgui_bloom_script.cpp ├── NodesEditorCore │ ├── NodesSystemCore │ │ ├── psag_nodes_system.hpp │ │ ├── psag_nodes_system_data.hpp │ │ ├── psag_nodes_system_encode.cpp │ │ ├── psag_nodes_system_file.cpp │ │ ├── psag_nodes_system_loader.cpp │ │ ├── psag_nodes_system_operation.cpp │ │ └── psag_nodes_system_render.cpp │ ├── NodesSystemLogger │ │ ├── framework_logger.cpp │ │ └── framework_logger.hpp │ ├── psag_nodes_editor.cpp │ ├── psag_nodes_editor.h │ ├── psag_nodes_editor_blur.cpp │ └── psag_nodes_editor_init.cpp ├── NodesEditorResource │ ├── JetBrainsMonoBoldItalic.ttf │ ├── SystemConfig │ │ ├── nodes_config_attributes.json │ │ ├── nodes_config_types.json │ │ └── system_editor_config.json │ └── SystemProject │ │ └── SystemNodesTest.psanodes ├── PSAGameNodesEditor.cpp ├── PSAGameNodesEditor.vcxproj ├── PSAGameNodesEditor.vcxproj.filters ├── PSAGameNodesEditor.vcxproj.user └── imgui.ini ├── README.md ├── docs ├── editor_demo_v1.png ├── node_editor_config.md ├── node_editor_export.md ├── node_editor_usage.md └── usage_image_1.png └── x64 └── Debug ├── glew32.dll └── glfw3.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /PSAGameNodesEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor.sln -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imconfig.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_demo.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_draw.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_glfw.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_internal.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_tables.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imgui_widgets.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imstb_rectpack.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imstb_textedit.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/imstb_truetype.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/README.txt -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/cpp/README.txt -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/debuggers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/debuggers/README.txt -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/debuggers/imgui.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/debuggers/imgui.gdb -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/debuggers/imgui.natstepfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/debuggers/imgui.natstepfilter -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/debuggers/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/debuggers/imgui.natvis -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/freetype/README.md -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/single_file/imgui_single_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImGuiForOpenGL/misc/single_file/imgui_single_file.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImNodes/imnodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImNodes/imnodes.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImNodes/imnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImNodes/imnodes.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/ImNodes/imnodes_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/ImNodes/imnodes_internal.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/bin/Release/Win32/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/bin/Release/Win32/glew32.dll -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/bin/Release/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/bin/Release/x64/glew32.dll -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/include/GL/eglew.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/include/GL/glew.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/include/GL/glxew.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/include/GL/wglew.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/lib/Release/Win32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/lib/Release/Win32/glew32.lib -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/lib/Release/Win32/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/lib/Release/Win32/glew32s.lib -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/lib/Release/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/lib/Release/x64/glew32.lib -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/lib/Release/x64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglew/lib/Release/x64/glew32s.lib -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/include/GLFW/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/include/GLFW/glext.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/lib-vc2019/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/lib-vc2019/glfw3.dll -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/lib-vc2019/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/lib-vc2019/glfw3.lib -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/lib-vc2019/glfw3_mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/lib-vc2019/glfw3_mt.lib -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/lib-vc2019/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/OpenGLglfw/lib-vc2019/glfw3dll.lib -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/allocators.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/cursorstreamwrapper.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/document.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/encodedstream.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/encodings.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/error/en.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/error/error.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/filereadstream.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/filewritestream.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/fwd.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/biginteger.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/clzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/clzll.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/diyfp.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/dtoa.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/ieee754.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/itoa.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/meta.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/pow10.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/regex.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/stack.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/strfunc.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/strtod.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/internal/swap.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/istreamwrapper.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/memorybuffer.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/memorystream.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/msinttypes/inttypes.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/msinttypes/stdint.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/ostreamwrapper.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/pointer.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/prettywriter.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/rapidjson.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/reader.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/schema.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/stream.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/stringbuffer.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/uri.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/RapidJSON/include/writer.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/STBimageLoader/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/STBimageLoader/stb_image.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/STBimageLoader/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/STBimageLoader/stb_image_write.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/imgui_bloom_src/opengl_imgui_bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/imgui_bloom_src/opengl_imgui_bloom.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/imgui_bloom_src/opengl_imgui_bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/imgui_bloom_src/opengl_imgui_bloom.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/ExternalDepLibrary/imgui_bloom_src/opengl_imgui_bloom_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/ExternalDepLibrary/imgui_bloom_src/opengl_imgui_bloom_script.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system.hpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_data.hpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_encode.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_file.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_loader.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_operation.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemCore/psag_nodes_system_render.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemLogger/framework_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemLogger/framework_logger.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/NodesSystemLogger/framework_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/NodesSystemLogger/framework_logger.hpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/psag_nodes_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/psag_nodes_editor.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/psag_nodes_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/psag_nodes_editor.h -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/psag_nodes_editor_blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/psag_nodes_editor_blur.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorCore/psag_nodes_editor_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorCore/psag_nodes_editor_init.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorResource/JetBrainsMonoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorResource/JetBrainsMonoBoldItalic.ttf -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorResource/SystemConfig/nodes_config_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorResource/SystemConfig/nodes_config_attributes.json -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorResource/SystemConfig/nodes_config_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorResource/SystemConfig/nodes_config_types.json -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorResource/SystemConfig/system_editor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorResource/SystemConfig/system_editor_config.json -------------------------------------------------------------------------------- /PSAGameNodesEditor/NodesEditorResource/SystemProject/SystemNodesTest.psanodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/NodesEditorResource/SystemProject/SystemNodesTest.psanodes -------------------------------------------------------------------------------- /PSAGameNodesEditor/PSAGameNodesEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/PSAGameNodesEditor.cpp -------------------------------------------------------------------------------- /PSAGameNodesEditor/PSAGameNodesEditor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/PSAGameNodesEditor.vcxproj -------------------------------------------------------------------------------- /PSAGameNodesEditor/PSAGameNodesEditor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/PSAGameNodesEditor.vcxproj.filters -------------------------------------------------------------------------------- /PSAGameNodesEditor/PSAGameNodesEditor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/PSAGameNodesEditor.vcxproj.user -------------------------------------------------------------------------------- /PSAGameNodesEditor/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/PSAGameNodesEditor/imgui.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/README.md -------------------------------------------------------------------------------- /docs/editor_demo_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/docs/editor_demo_v1.png -------------------------------------------------------------------------------- /docs/node_editor_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/docs/node_editor_config.md -------------------------------------------------------------------------------- /docs/node_editor_export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/docs/node_editor_export.md -------------------------------------------------------------------------------- /docs/node_editor_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/docs/node_editor_usage.md -------------------------------------------------------------------------------- /docs/usage_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/docs/usage_image_1.png -------------------------------------------------------------------------------- /x64/Debug/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/x64/Debug/glew32.dll -------------------------------------------------------------------------------- /x64/Debug/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcszc/PSAnodeEditor/HEAD/x64/Debug/glfw3.dll --------------------------------------------------------------------------------