From 41d168583ded708fd420f8f04b93b1390bb3567a Mon Sep 17 00:00:00 2001 From: Robert Beekman Date: Thu, 3 Nov 2016 21:39:43 +0100 Subject: [PATCH] Updated LUA Events (markdown) --- LUA-Events.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LUA-Events.md b/LUA-Events.md index 933122a..b751e2a 100644 --- a/LUA-Events.md +++ b/LUA-Events.md @@ -3,12 +3,12 @@ Within the LUA environment you can use events to react to certain things, such a To use events you need to subscribe to them. You can subscribe to the same event more than once if you want. The examples below show how subscribing works. -## Events +## Overview * [ProfileUpdating](https://github.com/SpoinkyNL/Artemis/wiki/LUA-Events#profileupdating) * [ProfileDrawing](https://github.com/SpoinkyNL/Artemis/wiki/LUA-Events#profiledrawing) * [KeyboardKeyPressed](https://github.com/SpoinkyNL/Artemis/wiki/LUA-Events#keyboardkeypressed) -## Functions +## Events ### ProfileUpdating Triggers whenever the profile is being updated. Use this event to process your own changes **before** every frame. If you want to change the way a layer is drawn, this is a good place to do so.