An open API service indexing awesome lists of open source software.

https://github.com/henry00is/gml

Collection of useful scripts I made over the years.
https://github.com/henry00is/gml

Last synced: 2 months ago
JSON representation

Collection of useful scripts I made over the years.

Awesome Lists containing this project

README

        

# Game Maker Studio 2 Scripts
Collection of useful scripts I made over the years for Game Maker Studio 2.

# Drawing
## Sprites
- [draw_sprite_centered_stretched](/Drawing/Sprites/draw_sprite_centered_stretched.gml)

# Events
- [event_broadcast](/Events/event_broadcast.gml)

# Mathematics
## Geometry
- [bounds](/Mathematics/Geometry/bounds.gml) - 3-Dimensional Bounds (Unity Inspired)
- [cylinder](/Mathematics/Geometry/cylinder.gml) - 3-Dimensional Cylinder
- [rect](/Mathematics/Geometry/rect.gml) - 2-Dimensional Rect (Unity Inspired)
## Interpolation
- [smoothstep](/Mathematics/Interpolation/smoothstep.gml) - (HLSL Inspired)
## Rounding
- [trunc](/Mathematics/Rounding/trunc.gml) - (HLSL Inspired)
- [normal_to_cardinal](/Mathematics/Rounding/normal_to_cardinal.gml)
## Trigonometry
- [cosh](/Mathematics/Trigonometry/cosh.gml) - (HLSL Inspired)
- [ldexp](/Mathematics/Trigonometry/ldexp.gml) - (HLSL Inspired)
- [sinh](/Mathematics/Trigonometry/sinh.gml) - (HLSL Inspired)
- [tanh](/Mathematics/Trigonometry/tanh.gml) - (HLSL Inspired)
## Vectors
- [real2](/Mathematics/Vectors/real2.gml) - 2-Dimensional Vector (HLSL Inspired)
- [real3](/Mathematics/Vectors/real3.gml) - 3-Dimensional Vector (HLSL Inspired)
- [real4](/Mathematics/Vectors/real4.gml) - 4-Dimensional Vector (HLSL Inspired)