Skip to content
View MelodyMorse's full-sized avatar

Block or report MelodyMorse

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Finite-State-Machine Finite-State-Machine Public

    GDScript 1

  2. A helper class for Unity.Rect with f... A helper class for Unity.Rect with functions that return the 2D coordinates of the respective vertex. Uses Unity (screen) coordinates
    1
    using UnityEngine;
    2
    
                  
    3
    public static class RectExtension
    4
    {
    5
        public static Vector2 TopLeft(this Rect rect)
  3. GameMakerStudio3D GameMakerStudio3D Public

    3D cameras, models, collisions and more in GMS2

    Yacc 3

  4. Split String function written in GML... Split String function written in GML for GameMaker Studio 2. Splits the string into substrings at a given charcter and returns an array of the substrings
    1
    /// @function SplitString(str, divider)
    2
    /// @description takes a string and a character, splits the string into substrings wherever that character occurs in the string, and returns an array of the substrings 
    3
    /// @param str String to split
    4
    /// @param divider Character that indicates at what place the string will be split 
    5
    function SplitString(str, divider){