This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[gd_resource type="EditorSettings" format=3] | |
[resource] | |
interface/editor/code_font_size = 15.0 | |
interface/theme/preset = "Custom" | |
interface/theme/base_color = Color(0.156863, 0.164706, 0.211765, 1) | |
interface/theme/accent_color = Color(0.741176, 0.576471, 0.976471, 1) | |
interface/theme/contrast = 0.3 | |
interface/theme/icon_saturation = 2.0 | |
interface/scene_tabs/display_close_button = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Very special thanks to Noel Berry | |
// A lot of this is borrowed from https://gist.github.com/NoelFB/778d190e5d17f1b86ebf39325346fcc5 | |
using System.Collections.Generic; | |
using System; | |
using System.IO; | |
using System.IO.Compression; | |
using System.Text; | |
using System.Linq; | |
using Microsoft.Xna.Framework; |