aboutsummaryrefslogtreecommitdiffstats
path: root/src/script.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 03:17:16 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 03:17:16 -0400
commit7b63e52b38d131ee44eb341f22d3d39f37979507 (patch)
treef25a6ebd4aac58ed2a2c30d7ca192f276a5513dc /src/script.hpp
parent871a882833364cf3a2b1de13fc25f610ef5d7da5 (diff)
Upon spawning, automatically call Entity Init function if it exists
Diffstat (limited to 'src/script.hpp')
-rw-r--r--src/script.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/script.hpp b/src/script.hpp
index bd8c620..be02542 100644
--- a/src/script.hpp
+++ b/src/script.hpp
@@ -87,6 +87,9 @@ class ScriptSystem : public entityx::System<ScriptSystem>
/**
* The function called by lua scripts in order to spawn an entity.
+ * @param param The table that must be passed in by Lua. This is a
+ * sol2 object instead of a sol2 table because this allows us to handle
+ * errors easier instead of letting sol2 do the error handling.
*/
sol::table spawn(sol::object param);