Skip to content

Instantly share code, notes, and snippets.

let subdomain = SUBDOMAIN;
let segmentQuery = {
$and: [
{ startedAt: { op: "gte", value: "2020-11-03T23:00:00.000Z" } },
{ startedAt: { op: "lt", value: "2020-12-01T23:00:00.000Z" } },
],
user: { name: ["daniel","tom","Alex"] },
};
@wappenull
wappenull / SceneChangeTracker.cs
Created June 6, 2021 04:39
Help track unknown Unity scene dirty which bloat the version control.
using UnityEditor;
using UnityEditor.SceneManagement;
using UnityEngine;
using UnityEngine.SceneManagement;
// See https://forum.unity.com/threads/how-to-know-what-makes-scene-dirty.694390
namespace Wappen.Editor
{
/// <summary>