Skip to content
View LotteMakesStuff's full-sized avatar
💤
sleepy
💤
sleepy

Block or report LotteMakesStuff

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
LotteMakesStuff/README.md

Hi there 👋 Buy Me a Coffee at ko-fi.com Become a Patron!

Hi im Lotte and i make stuff! Mostly videogames and Unity stuff, you can find a whole bunch of it here 💖

Hyper Gunsport Gunsport John Wick Hex PlagueInc The Swindle

Pinned Loading

  1. LMS.Version LMS.Version Public

    Super simple auto build version tool

    ShaderLab 42 4

  2. Facepunch.Steamworks Facepunch.Steamworks Public

    Forked from Facepunch/Facepunch.Steamworks

    Another fucking c# Steamworks implementation

    C# 18 1

  3. SimplePhysicsDemo SimplePhysicsDemo Public

    A simple lil demo showing a jobified physics system

    C# 222 24

  4. Code running pack! two property draw... Code running pack! two property drawing scripts that make it super easy to trigger code via buttons in the inspector, and get feedback! [TestButton] draws you little buttons that call a method on your MonoBehaviour, and [ProgressBar] give you a great way to show feedback from long running methods. These are *super* helpful for things like procedural generation
    1
    using UnityEngine;
    2
    using System.Collections;
    3
    
    
    4
    public class InspectorButtonsTest : MonoBehaviour
    5
    {
  5. [Autohook] property drawer for unity... [Autohook] property drawer for unity - Add this [Autohook] attribute to a property to and the inspector will automagically hook up a valid reference for you if it can find a component attached to the same game object that matches the field you put it on. You can watch a demo of this in action here https://youtu.be/faVt09NGzws <3
    1
    // NOTE DONT put in an editor folder!
    2
    using UnityEngine;
    3
    
    
    4
    public class AutohookAttribute : PropertyAttribute
    5
    {
  6. MinMax property drawer for Unity - A... MinMax property drawer for Unity - Add a [MinMax] attribute to a property to draw a useful min/max setting slider.
    1
    // NOTE DONT put in an editor folder
    2
    
    
    3
    using UnityEngine;
    4
    
    
    5
    public class MinMaxAttribute : PropertyAttribute