Skip to content
View Scurvyez's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report Scurvyez

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
Scurvyez/README.md
public class Steve 
{
    public string Name { get; } = "Steve";
    public string Pronouns { get; } = "He / Him";
    public string Discord { get; } = "steveo.o";
    public string Occupation { get; set; } = "Hobbyist programmer by night, wildlife ecologist/biologist by day";
    
    public Dictionary<string, string> LikesDislikes { get; set; } = new ()
    {
        { "Likes", "Programming, wildlife, shaders, black coffee, climbing, synthwave, nice people" },
        { "Dislikes", "Bugs in code, environmental degradation, movies with bad endings" }
    };

    public string Passion = "Creating works which induce a sense of creativity in others." 
                            + "People all too often forget to enjoy the careers or hobbies they follow." 
                            + "If I can somehow curb that trend then I will do everything in my power to do so.";
}

Personal Projects

public class UnityShenanigans
{
    public static void Main()
    {
        List<UnityProject> projects = new ()
        [
            new UnityProject("Solar Systems")
                .AddDescription(
                    "A realistic yet random solar system generator.",
                    "Based on real-world math and current scientific knowledge of the universe."),
        ];
    }
}

⭕ Solar Systems demo...

func _ready():
    var godot_projects = [
        GodotProject.new("Panic Squares").add_description(
            "Originally written in C#, reworked in GDScript.",
            "You control a square with a tail.",  
            "Collect other squares and various short-lived abilities while avoiding walls and enemies.",
            "Do it all before the timer runs out or all lives are lost.")
    ]

⭕ Panic Squares demo...

Rimworld Modding

public class RimworldModding
{
    public static void Main()
    {
        List<RimworldMod> mods = new ()
        [
            new RimworldMod("Random Chance")
                .AddDescription(
                    "Adds many new events and or situations which occur randomly based on certain factors",
                    "If you ever felt like the game needed to be more difficult with complete randomness then this mod is for you!"),

            new RimworldMod("Fabled Cervidae")
                .AddDescription(
                    "Adds 4 new fantasy-based cervid (deer) species to the game.",
                    "Each comes with its own unique abilities and graphics.",
                    "I'm a biologist by trade so yeah, I made some awesome animals and there are more in the works."),

            new RimworldMod("Steve's Walls")
                .AddDescription(
                    "Introduces new powered walls with customizable glowing colors.",
                    "Alert walls pulse with configurable colors to warn the colony of nearby dangers."),

            new RimworldMod("Fireflies 2")
                .AddDescription(
                    "A total rewrite of my original Fireflies mod.",
                    "This version utilizes Unity's ParticleSystem for much better performance instead of making each firefly an actual pawn.",
                    "Now they are just beautiful little visual effects.",
                    "My proudest mod thus far."),

            new RimworldMod("Bones")
                .AddDescription(
                    "Enhances pawns by adding all 206 human bones with various fracture hediffs.",
                    "Birthed out of a bet in the Official Rimworld Discord server on one gloomy Friday evening. :)"),
        ];
    }
}

Help me fuel my late-night coding sessions. ☕ Support is never asked for but it goes a long way in making sure anything I produce stays up-to-date!

ko-fi

Pinned Loading

  1. Solar-Systems Solar-Systems Public

    A random, yet realistic solar system generator/simulator created in Unity. Choose a main sequence star class for the system and the rest handles itself.

    C# 2

  2. Matryx Matryx Public

    C#

  3. PixelWizardry PixelWizardry Public

    A framework or... utility mod of sorts for RimWorld. It add several new shaders to the game written in hlsl. :)

    C# 1 1

  4. RandomChance RandomChance Public

    C#

  5. StevesDoors StevesDoors Public

    C#

  6. StevesWalls StevesWalls Public

    This mod adds two new walls to the game, each with 7 different colors.

    C#