Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-15 | syntax error fix (for real this time) | Jarrett Chisholm | |
2017-01-15 | Revert "try different cmake ppa" | Jarrett Chisholm | |
This reverts commit e1429b611d89d35b145a808e5c6debf7d94a8584. | |||
2017-01-15 | try different cmake ppa | Jarrett Chisholm | |
2017-01-15 | syntax error | Jarrett Chisholm | |
2017-01-15 | update cmake | Jarrett Chisholm | |
2017-01-15 | We don't need to specify c++11 flag | Jarrett Chisholm | |
2017-01-15 | fix C++11 feature checking for Microsoft Visual C++ Build Tools 2015 | Jarrett Chisholm | |
2017-01-07 | Updates 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-06 | Use std::shared_ptr<sf::Shape> directly as component in example. | Alec Thomas | |
2016-12-29 | Merge pull request #167 from jarrettchisholm/master | Alec Thomas | |
Fix for issue #145 | |||
2016-12-29 | Merge pull request #169 from lethal-guitar/component-operator-star | Alec Thomas | |
Add dereference operator to ComponentHandle | |||
2016-12-28 | Add dereference operator to ComponentHandle | lethal-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-25 | fix compile issue with gcc 6 | Jarrett Chisholm | |
2016-12-25 | Merge pull request #166 from sjaustirni/patch-1 | Alec Thomas | |
Fix copy&paste mistake in CMakeLists.txt | |||
2016-12-22 | Fix copy&paste mistake in CMakeLists.txt | sjaustirni | |
A one-word fix in copy&paste mistake in the section for checking C++11 features. | |||
2016-10-31 | Merge pull request #157 from lethal-guitar/cmake-messages-use-status | Alec Thomas | |
CMake: Use 'STATUS' message type for non-error messages | |||
2016-10-29 | Use 'STATUS' message type for non-error messages | lethal-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-24 | Merge pull request #156 from asmw/cmake_includes | Alec Thomas | |
Set build_interface directories for integrated builds | |||
2016-10-23 | Set build_interface directories for integrated builds | Sumedha 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-24 | Merge pull request #155 from asmw/master | Alec Thomas | |
Fix a typo | |||
2016-10-23 | Fix a typo | Sumedha Widyadharma | |
2016-10-23 | Merge pull request #154 from FrankStain/master | Alec Thomas | |
std::hash for const Entity implemented. #153 | |||
2016-10-22 | std::hash for const Entity implemented. | Frank Stein | |
2016-04-13 | Add appveyor.yml | Alec Thomas | |
2016-04-13 | Merge pull request #142 from roig/master | Alec Thomas | |
Fixed shared library compilation and Function to retrieve the entity from ComponentHandle | |||
2016-04-13 | Fix running tests | Daniel Guzmán | |
2016-04-13 | Dependencies for test projects added | Daniel Guzmán | |
2016-04-13 | Fix ident. | Daniel Guzman | |
2016-04-10 | Minor fix due to copy-paste of entity() function | Daniel Guzman | |
2016-04-10 | Fixed 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-08 | Merge pull request #140 from zackthehuman/copy_construct_entities | Alec Thomas | |
Enable Entity cloning via EntityManager::create_from_copy | |||
2016-04-07 | Allow Entity cloning via EntityManager::create_from_copy | Zack Mulgrew | |
2016-04-06 | Added a function to retrieve the Entity associated with a component in ↵ | Daniel Guzman | |
ComponentHandle | |||
2016-03-17 | Merge pull request #137 from FrankStain/master | Alec Thomas | |
Removing of copy-paste issue. | |||
2016-03-16 | Removing of copy-paste issue. | Frank Stein | |
2016-02-28 | Merge pull request #134 from zackthehuman/remove_components_on_destroy | Alec Thomas | |
Re-implement "Remove components on destroy" functionality | |||
2016-02-27 | Trigger ComponentRemovedEvent on Entity::destroy | Zack Mulgrew | |
2016-02-27 | Add ComponentHelper and base class, no functionality | Zack Mulgrew | |
2016-02-27 | Revert "Split Entity and ComponentHandle into their own headers" | Zack Mulgrew | |
This reverts commit d8c5d0e30980b747749571b5a1e5c3b5b20423b2. | |||
2016-02-27 | Revert "Trigger ComponentRemovedEvent for each component before destroying" | Zack Mulgrew | |
This reverts commit 070cd89d2ed140594608d252318f444202579a52. | |||
2016-02-27 | Revert "Fix method name to be consistent with others" | Zack Mulgrew | |
This reverts commit f176609c242afd53f6083b3e115227ace10e2eb2. | |||
2016-02-26 | Fix apt-get line | Alec Thomas | |
2016-02-05 | Merge pull request #129 from zackthehuman/entity_removal_on_destroy | Alec Thomas | |
Emit ComponentRemovedEvent<T> on Entity::destroy() | |||
2016-02-05 | Revert change made regarding component inheritance | Zack Mulgrew | |
2016-02-04 | Fix method name to be consistent with others | Zack Mulgrew | |
2016-02-03 | Update README to reflect how components are removed before entity destruction | Zack Mulgrew | |
2016-02-03 | Trigger ComponentRemovedEvent for each component before destroying | Zack Mulgrew | |
2016-02-03 | Split Entity and ComponentHandle into their own headers | Zack Mulgrew | |
2016-02-03 | Add test 'TestComponentRemovedEventOnEntityDestroyed' | Zack Mulgrew | |
2016-01-03 | Use update_all() in example. | Alec Thomas | |