Skip to content
View seekeroftheball's full-sized avatar
🎮
New GitHub Video Comes Out on Wednesday Oct 4 on YouTube!
🎮
New GitHub Video Comes Out on Wednesday Oct 4 on YouTube!
Block or Report

Block or report seekeroftheball

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
seekeroftheball/README.md

Welcome

Greetings!

Hi

I do a YouTube channel for video game creators where I discuss game design, programming, art, and music for game development.

Find me @seekeroftheball

💻 C# Programming Tools

📁 Organizational Tools

  • New Folder Wizard - ⭐️ GitHub stars - Organizational tool for creating new folders from a customizable template in Unity.

🎮 Gameplay Enhancing Tools

🛠️ Miscellaneous Tools

🎓 Example Projects

Tools I Use

csharp unity git

photoshop Logic-pro blender

php sql

html5 css3 javascript markdown wordpress

Contact

discord reddit gmail

Pinned

  1. NewFolderWizard-UnityTool NewFolderWizard-UnityTool Public

    New Folder Wizard is an organizational tool for Unity for quickly importing and customizing your personal folder structure into every project. Save and reuse your templates. Templates are saved as …

    C# 47 3

  2. Lightweight static emoji library for... Lightweight static emoji library for the Unity Game Engine. Returns strings usable in the editor and in games.
    1
    //Author : https://github.com/seekeroftheball   https://gist.github.com/seekeroftheball
    2
    //Version : 1.1
    3
    //Updated : March 2023
    4
    using System.Collections.Generic;
    5
    
                  
  3. FindMax for a variable number of par... FindMax for a variable number of parameters of any IComparable type, returns the largest value from the provided parameters.
    1
    // using System;
    2
    // using System.Linq;
    3
    
                  
    4
    /// <summary>
    5
    /// Find the maximum value from a variable number of parameters of any IComparable type.
  4. An object pool that uses multithread... An object pool that uses multithreading to handle concurrent access to the pool.
    1
    //Author : https://github.com/seekeroftheball   https://gist.github.com/seekeroftheball
    2
    //Version : 1.0
    3
    //Updated : April 2023
    4
    
                  
    5
    using System;