Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

15 Commits

Repository files navigation

Modding Docs

The documentation for the geometry rays fyre modding api

To get started make a file in the mods directory in the root folder of geometry rays fyre.

Call the file anything you want as long as it ends with .lua

Basic structure:

return {
enabled=true,
setup=function()
-- Code that runs once on startupend,
loop=function()
-- Code that runs every frameenddraw=function()
-- Code for drawing stuff to the screenend
}

A bunch of variables have a get and set function

Variables you can change:

  • velocity_y
  • gravity
  • default_gravity
  • jump_force
  • default_jump_force
  • movement_speed
  • default_movement_speed
  • ship_power
  • ship_falling_speed
  • vertical_wave_speed
  • game_tps

To change a variable do variable_name:set(value)

To get the value of a variable do variable_name:get()

About

The documentation for the geometry rays fyre modding api

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Contributors