Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Releases: vurvdev/SFHaxe

SFHaxe 0.3.3

09 Jul 21:22

Choose a tag to compare

  • Added darkrp library

  • Added midi library

  • Added navmesh library

  • Added NextBot library

  • Added NextBot type

  • Added NavArea type

  • Added WebSocket type

  • Update bindings to thegrb93/StarfallEx@d741805

SFHaxe 0.3.2

19 May 18:05

Choose a tag to compare

Added compiler tags / directives

AUTHOR
NAME
SUPERUSER
INCLUDEDATA
CLIENTMAIN
MODEL

Won't be adding includedir/include because haxe compiles this all to one file anyways.

SFHaxe v0.3.1

14 May 21:29

Choose a tag to compare

The generator is now cross-platform. I've only tested it on the C++ target but it should work in Hashlink / C# At the very least.

Updated libraries and types to current Starfall so functions like Table.address exist. Still need to automate this.

SFHaxe v0.3.0

27 Mar 07:25
0fe3eba

Choose a tag to compare

Since the SFHelper / Docs are now typed, SFHaxe will now autogenerate types as well!
https://thegrb93.github.io/StarfallEx/

  • Does not support multi-type returns OR multi-value returns as of now
  • Everything is typed tho.

SFHaxe v0.2.0

06 Mar 02:02

Choose a tag to compare

CHANGELOG:

  • Docs are properly indented with tabs now.
  • Added a standard library and support for Haxe's Sys library.
  • Added CLIENT, SERVER and SHARED defines to make a chip target those and output the respective SF code (eg --@client)
  • Added replacement functions for _hx_error and _hx_tostring since they are really bad.. (Currently don't know how to get rid of the original functions)
  • Functions are now separated by realm using compilation time definitions. (For example you won't see any wire functions if you only define CLIENT )
  • The generation script is now open source and written in Haxe!

SFHaxe v0.1.1

02 Mar 05:04

Choose a tag to compare

Through abstracting all of the types, we now have metamethods. This would work perfectly if Haxe didn't interpret some type activities like multiplication as using integers...

So now you can array index vectors, add and multiply them, same with colors.