-
Notifications
You must be signed in to change notification settings - Fork 14
ScriptingTutorial
Ed Kolis edited this page Aug 25, 2019
·
1 revision
Here's a tutorial on the basics of FrEee scripting.
It's also helpful to know that you can create a "global script", located at Scripts/Global.py under your mod folder, which will automatically be referenced in all your scripts (including formulas), so you can define functions to use in your other scripts all in one place. The global script namespace will automatically be imported (from Global import *;), so you don't need to do so manually.