Skip to content

Vanda Engine 2.9.0

Compare
Choose a tag to compare
@ehsankamrani ehsankamrani released this 02 Aug 00:51
· 389 commits to master since this release

Vanda Engine 2.9.0 is available for download:
Official website: https://vanda3d.org/download-vanda-engine/
Github: https://github.com/ehsankamrani/vandaengine/releases/tag/v2.9.0
Sourceforge: https://sourceforge.net/projects/vandaengine/files/Vanda%20Engine%202/2.9.0/

What's new:

  1. Added the following scripting APIs to manage files and folders and save/load data at runtime:
  • CreateFolder(string folderPath)
  • RemoveFolder(string folderPath)
  • RemoveFile(string filePath)
  • OpenFileForReading(string filePath)
  • OpenFileForWriting(string filePath)
  • CloseFile(string filePath)
  • ReadBoolVariableFromFile()
  • WriteBoolVariableToFile(bool value)
  • ReadFloatVariableFromFile()
  • WriteFloatVariableToFile(float value)
  • ReadIntVariableFromFile()
  • WriteIntVariableToFile(int value)
  • ReadStringVariableFromFile()
  • WriteStringVariableToFile(string value)