TestFunc is a sample plugin built for the Axeron Manager / Game Vortex plugin system.
It demonstrates how to structure and configure a plugin using axplugin.toml with assets, scripts, and optional binaries.
TestFunc/
├─ .axignore # Files to be ignored by plugin loader
├─ axplugin.toml # Main configuration file for the plugin
├─ banner.png # Plugin banner/icon
├─ main.html # HTML UI entry point
├─ main.js # Main JavaScript logic
├─ test.js # Additional script
├─ bin/ # Example binary/script folder
└─ TestIgnoredFolder/bin/ # Nested binary folder
The plugin metadata and configuration are defined in axplugin.toml.
Example fields include:
id = "testfunc"
name = "TestFunc"
version = "1.0.0"
author = "FahrezONE"
description = "A sample plugin demonstrating Axeron Manager structure."- Place the
TestFunc/folder inside your Game Vortex/GV2R/Plugin/Debug/directory. - Launch Game Vortex (GV2R).
- The plugin should appear with its banner and metadata.
- Run the plugin from the Game Vortex - AxPlugin UI.
- HTML + JS UI via
main.htmlandmain.js. - Plugin metadata with
axplugin.toml. - Binary files support inside
bin/folder. - Ignore support via
.axignore.
- Files listed in
.axignorewill not be included in plugin packaging or runtime. - This plugin is for demonstration purposes only.
This project is open source under the Apache 2.0 License.
Feel free to explore, modify, and build upon it.