๐ฝInstallation
Welcome ! I hope you will have fun following the NACT tutorials as much as I had writing them.
Please, if you are stuck somewhere, let me know via Discord either via the Nanos World discord server.
Installing the dependencies
NACT uses two dependencies, you need to make sure they are present in your Packages/
folder:
Classlib : Allows us to use OOP easilly. Made by Timmy.
Thats it, make sure your Packages
folder is like the following
+ Packages/
+--- classlib
Installing NACT
Clone NACT from the repository here: https://github.com/DKFN/NACT
The default branch, master
is always the latest stable release.
Move the cloned director to your Packages
folder, your directory tree should look like this now:
+ Packages/
+--- classlib
+--- nact
If you want to do the Create your first fight tutorial you are all set!
However if you want to use NACT in your gamemode without following the tutorial, just make sure to add NACT in the package_requirements of your gamemode:
packages_requirements = [
"nact",
]
That's it !
Last updated