We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Layer.enable();
Manually enable the Layers plugin.
All Haxegon plugins have an enable() function, which is optional. You normally don't need to call this unless you're doing something complicated.
enable()
import haxegon.*; class Main{ function init(){ //Manually enable the Layers plugin. Layer.enable(); } function update(){ } }