Skip to content

Instantly share code, notes, and snippets.

using UnityEngine;
using System.Globalization;
/*
THIS SCRIPT IS WRITTEN BY
THOMAS KOLE
www.thomaskole.com
THIS SCRIPT IS RELEASED UNDER A
Creative Commons Attribution-NonCommercial
@CyraGames
CyraGames / VersionIncrement.cs
Last active July 16, 2018 18:16
Unity script to increment the version number each time the project is run in the editor, the version can be queried at run time with 'Application.version'.
// Minor adjustments by Arshd
// Version Incrementor Script for Unity by Francesco Forno (Fornetto Games)
// Inspired by http://forum.unity3d.com/threads/automatic-version-increment-script.144917/
// Modified by HJ
using UnityEditor;
using UnityEditor.Callbacks;
using UnityEngine;
using System;