Skip to content

Instantly share code, notes, and snippets.

View Kutejnikov's full-sized avatar

Pavel Kutejnikov Kutejnikov

View GitHub Profile
@Kutejnikov
Kutejnikov / RecursiveDungeon.cs
Last active January 15, 2022 17:21
A simple dungeon creation script for C# (with visualization in Unity)
// 1. Create UI -> Image
// 2. Add this script to Image
// 3. Press Space in Game Mode
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class RecursiveDungeon : MonoBehaviour