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.
- Host: GitHub
- URL: https://github.com/henry00is/gml
- Owner: Henry00IS
- License: mit
- Created: 2020-05-30T20:32:45.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-27T16:23:34.000Z (3 months ago)
- Last Synced: 2025-02-27T19:35:37.038Z (3 months ago)
- Language: Game Maker Language
- Size: 33.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)