├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── Source ├── Audio │ ├── CMakeLists.txt │ └── Main.cpp ├── CMake │ └── BsExampleConfig.h.in ├── Common │ ├── BsCameraFlyer.cpp │ ├── BsCameraFlyer.h │ ├── BsExampleFramework.h │ ├── BsFPSCamera.cpp │ ├── BsFPSCamera.h │ ├── BsFPSWalker.cpp │ ├── BsFPSWalker.h │ ├── BsObjectRotator.cpp │ ├── BsObjectRotator.h │ ├── CMakeLists.txt │ └── CMakeSources.cmake ├── CustomMaterials │ ├── CMakeLists.txt │ └── Main.cpp ├── Decals │ ├── CMakeLists.txt │ └── Main.cpp ├── GUI │ ├── CMakeLists.txt │ └── Main.cpp ├── LowLevelRendering │ ├── CMakeLists.txt │ └── Main.cpp ├── Particles │ ├── CMakeLists.txt │ └── Main.cpp ├── PhysicallyBasedShading │ ├── CMakeLists.txt │ └── Main.cpp ├── Physics │ ├── CMakeLists.txt │ └── Main.cpp └── SkeletalAnimation │ ├── CMakeLists.txt │ └── Main.cpp └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/README.md -------------------------------------------------------------------------------- /Source/Audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Audio/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Audio/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Audio/Main.cpp -------------------------------------------------------------------------------- /Source/CMake/BsExampleConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/CMake/BsExampleConfig.h.in -------------------------------------------------------------------------------- /Source/Common/BsCameraFlyer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsCameraFlyer.cpp -------------------------------------------------------------------------------- /Source/Common/BsCameraFlyer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsCameraFlyer.h -------------------------------------------------------------------------------- /Source/Common/BsExampleFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsExampleFramework.h -------------------------------------------------------------------------------- /Source/Common/BsFPSCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsFPSCamera.cpp -------------------------------------------------------------------------------- /Source/Common/BsFPSCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsFPSCamera.h -------------------------------------------------------------------------------- /Source/Common/BsFPSWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsFPSWalker.cpp -------------------------------------------------------------------------------- /Source/Common/BsFPSWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsFPSWalker.h -------------------------------------------------------------------------------- /Source/Common/BsObjectRotator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsObjectRotator.cpp -------------------------------------------------------------------------------- /Source/Common/BsObjectRotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/BsObjectRotator.h -------------------------------------------------------------------------------- /Source/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Common/CMakeSources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Common/CMakeSources.cmake -------------------------------------------------------------------------------- /Source/CustomMaterials/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/CustomMaterials/CMakeLists.txt -------------------------------------------------------------------------------- /Source/CustomMaterials/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/CustomMaterials/Main.cpp -------------------------------------------------------------------------------- /Source/Decals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Decals/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Decals/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Decals/Main.cpp -------------------------------------------------------------------------------- /Source/GUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/GUI/CMakeLists.txt -------------------------------------------------------------------------------- /Source/GUI/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/GUI/Main.cpp -------------------------------------------------------------------------------- /Source/LowLevelRendering/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/LowLevelRendering/CMakeLists.txt -------------------------------------------------------------------------------- /Source/LowLevelRendering/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/LowLevelRendering/Main.cpp -------------------------------------------------------------------------------- /Source/Particles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Particles/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Particles/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Particles/Main.cpp -------------------------------------------------------------------------------- /Source/PhysicallyBasedShading/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/PhysicallyBasedShading/CMakeLists.txt -------------------------------------------------------------------------------- /Source/PhysicallyBasedShading/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/PhysicallyBasedShading/Main.cpp -------------------------------------------------------------------------------- /Source/Physics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Physics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Physics/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/Physics/Main.cpp -------------------------------------------------------------------------------- /Source/SkeletalAnimation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/SkeletalAnimation/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SkeletalAnimation/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/Source/SkeletalAnimation/Main.cpp -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameFoundry/bsfExamples/HEAD/appveyor.yml --------------------------------------------------------------------------------