Skip to content

Instantly share code, notes, and snippets.

View fallenblood7080's full-sized avatar
🎮
Indie Game Developer

Fallenblood fallenblood7080

🎮
Indie Game Developer
View GitHub Profile
@nicoplv
nicoplv / 0-UnityScriptTemplates.info
Last active May 10, 2024 16:41
List of C# Script Templates for Unity 3D
List of C# Script Templates for Unity 3D:
81-C#__Behavior-NewBehaviour.cs.txt
81-C#__BehaviorListed-NewBehaviourListed.cs.txt
81-C#__Class-NewClass.cs.txt
81-C#__Interface-NewInterface.cs.txt
81-C#__ScriptableObject-NewScriptableObject.cs.txt
@fallenblood7080
fallenblood7080 / SaveLoadManager.cs
Last active March 31, 2024 15:59
Save Load System for Unity
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using UnityEditor;
using UnityEngine;
/*
* Using - https://docs.unity3d.com/2019.4/Documentation/Manual/com.unity.nuget.newtonsoft-json.html for reading and writing json
*/