Skip to content
View CriticalAngle's full-sized avatar
Block or Report

Block or report CriticalAngle

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

Pinned

  1. CriticalAnglePlayer CriticalAnglePlayer Public

    A simple and minimal Rigidbody player controller

    C# 1

  2. QRMeshify QRMeshify Public

    Turns QR code image into an STL file, ready for print.

    Rust

  3. SceneTransfer SceneTransfer Public

    A basic script generator to give aliases to all of your scenes to use in code for transitioning scenes.

    C#

  4. A simple class for managing a variab... A simple class for managing a variable of any type.
    1
    // ReSharper disable MemberCanBePrivate.Global
    2
    using System;
    3
    using System.Collections.Generic;
    4
    
                  
    5
    namespace CriticalAngleStudios
  5. In Unity, instead of having to creat... In Unity, instead of having to create a new IEnumerator for every time that you would like to linearly interpolate a value, you can use this function to handle the skeleton code.
    1
    using System;
    2
    using System.Collections;
    3
    using JetBrains.Annotations;
    4
    using UnityEngine;
    5
    
                  
  6. A type that allows multiple types to... A type that allows multiple types to be stored in it and chosen as needed
    1
    // ReSharper disable MemberCanBePrivate.Global
    2
    // ReSharper disable UnusedAutoPropertyAccessor.Global
    3
    // ReSharper disable CheckNamespace
    4
    
                  
    5
    namespace CriticalAngleStudios