Skip to content

Instantly share code, notes, and snippets.

View Besjan's full-sized avatar

Cuku Besjan

  • Berlin
View GitHub Profile
@Besjan
Besjan / RemoveEmptyFolders.cs
Created June 24, 2020 06:27 — forked from mob-sakai/RemoveEmptyFolders.cs
Automatically remove empty folders in project for Unity.
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Linq;
using System;
/// <summary>
/// Remove empty folders automatically.
@Besjan
Besjan / BoundingFrustum.cs
Created June 16, 2020 05:40
Bounding Frustum implementation in C# for Unity.
namespace StagPoint.Math
{
using System;
using UnityEngine;
using Mono.Simd;
public class BoundingFrustum
{
#region Public fields