aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-01-21Updated README.mdadtennant
2018-11-15Merge pull request #222 from xyproto/docAlec Thomas
Add note about Arch Linux
2018-11-15Add note about Arch LinuxAlexander F. Rødseth
2018-09-21Merge pull request #218 from Zandor300/patch-1Alec Thomas
Fixed syntax error in readme.md
2018-09-21Fixed syntax error.Zandor Smith
2018-06-15Merge pull request #216 from alecthomas/revert-211-masterAlec Thomas
Revert "Fix minor memory leak from simplesignal.h and inside pool_test.cc"
2018-06-15Revert "Fix minor memory leak from simplesignal.h and inside pool_test.cc"Alec Thomas
2018-06-15Merge pull request #215 from alecthomas/revert-213-gh212Alec Thomas
Revert "Update to brace initialisation to allow for easy aggregate use"
2018-06-15Revert "Update to brace initialisation to allow for easy aggregate use"Alec Thomas
2018-06-15Merge pull request #213 from radman0x/gh212Alec Thomas
Update to brace initialisation to allow for easy aggregate use
2018-06-15Merge pull request #211 from chocolatemelt/masterAlec Thomas
Fix minor memory leak from simplesignal.h and inside pool_test.cc
2018-06-14Update to brace initialisation to allow for easy aggregate useConrad Mercer
2018-05-27properly delete pointersKevin Zhang
2018-05-27update simplesignal.h from latestKevin Zhang
2017-08-01Fix typodomdom
lyout -> layout
2017-02-21Link to Gitter and benchmarks by @abeimlerAlec Thomas
2017-02-07Merge pull request #174 from jarrettchisholm/masterAlec Thomas
Fix C++11 feature checking for Microsoft Visual C++ Build Tools 2015
2017-02-04Gitter linkAlec Thomas
2017-01-15turn off extensions (so that it uses c++11 instead of gnu++11)Jarrett Chisholm
2017-01-15syntax error fix (for real this time)Jarrett Chisholm
2017-01-15Revert "try different cmake ppa"Jarrett Chisholm
This reverts commit e1429b611d89d35b145a808e5c6debf7d94a8584.
2017-01-15try different cmake ppaJarrett Chisholm
2017-01-15syntax errorJarrett Chisholm
2017-01-15update cmakeJarrett Chisholm
2017-01-15We don't need to specify c++11 flagJarrett Chisholm
2017-01-15fix C++11 feature checking for Microsoft Visual C++ Build Tools 2015Jarrett Chisholm
2017-01-07Updates to example.Alec Thomas
- Fade in bodies. - Spin particles per their rotation (this fell by the wayside when translated to a vertex array).
2017-01-06Use std::shared_ptr<sf::Shape> directly as component in example.Alec Thomas
2016-12-29Merge pull request #167 from jarrettchisholm/masterAlec Thomas
Fix for issue #145
2016-12-29Merge pull request #169 from lethal-guitar/component-operator-starAlec Thomas
Add dereference operator to ComponentHandle
2016-12-28Add dereference operator to ComponentHandlelethal-guitar
This makes it possible to write code like this: auto& componentRef = *someEntity.component<Position>(); This was already possible previously, but required calling .get() on the component handle.
2016-12-25fix compile issue with gcc 6Jarrett Chisholm
2016-12-25Merge pull request #166 from sjaustirni/patch-1Alec Thomas
Fix copy&paste mistake in CMakeLists.txt
2016-12-22Fix copy&paste mistake in CMakeLists.txtsjaustirni
A one-word fix in copy&paste mistake in the section for checking C++11 features.
2016-10-31Merge pull request #157 from lethal-guitar/cmake-messages-use-statusAlec Thomas
CMake: Use 'STATUS' message type for non-error messages
2016-10-29Use 'STATUS' message type for non-error messageslethal-guitar
Using the message() command without the mode keyword makes those messages appear in red when using cmake-gui, which makes them look like errors. By specifying the type as STATUS, they look like regular informative messages.
2016-10-24Merge pull request #156 from asmw/cmake_includesAlec Thomas
Set build_interface directories for integrated builds
2016-10-23Set build_interface directories for integrated buildsSumedha Widyadharma
This makes it very easy to integrate entityx into a build. I.e: add_subdirectories(3rdparty/entityx) target_link_libraries(my_target entityx[_shared]) This makes #include entityx/entityx.h just work.
2016-10-24Merge pull request #155 from asmw/masterAlec Thomas
Fix a typo
2016-10-23Fix a typoSumedha Widyadharma
2016-10-23Merge pull request #154 from FrankStain/masterAlec Thomas
std::hash for const Entity implemented. #153
2016-10-22std::hash for const Entity implemented.Frank Stein
2016-04-13Add appveyor.ymlAlec Thomas
2016-04-13Merge pull request #142 from roig/masterAlec Thomas
Fixed shared library compilation and Function to retrieve the entity from ComponentHandle
2016-04-13Fix running testsDaniel Guzmán
2016-04-13Dependencies for test projects addedDaniel Guzmán
2016-04-13Fix ident.Daniel Guzman
2016-04-10Minor fix due to copy-paste of entity() functionDaniel Guzman
2016-04-10Fixed shared library compilation.Daniel Guzman
- Fixed that when ENTITYX_BUILD_SHARED=1 was compiling the static library and the shared_library. Now it only compiles one of them, shared or static, but not both. Using visual studio compiler, now, the shared library doesn't create a .lib file (because it doesn't export anything which is OK). This will be the next step.
2016-04-08Merge pull request #140 from zackthehuman/copy_construct_entitiesAlec Thomas
Enable Entity cloning via EntityManager::create_from_copy