This file contains hidden or 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
// gist by Roystan (IronWarrior): https://gist.github.com/IronWarrior/005f649e443bf51b656729231d0b8af4 | |
// Video demo: https://twitter.com/DavigoGame/status/1300842800964018178 | |
// | |
// CONTRIBUTIONS: | |
// Mac and Linux support added by Creature Coding: https://creaturecoding.com/ | |
// | |
// PURPOSE: | |
// Unity does not permit a project to be open in two different editor instances. | |
// This can be frustrating when building projects with multiplayer networking, | |
// as it would require you to create a build every time you wish you test your netcode. |
This file contains hidden or 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
using System; | |
namespace Kryz.Tweening | |
{ | |
// Made with the help of this great post: https://joshondesign.com/2013/03/01/improvedEasingEquations | |
// --------------------------------- Other Related Links -------------------------------------------------------------------- | |
// Original equations, bad formulation: https://github.com/danro/jquery-easing/blob/master/jquery.easing.js | |
// A few equations, very simplified: https://gist.github.com/gre/1650294 | |
// Easings.net equations, simplified: https://github.com/ai/easings.net/blob/master/src/easings/easingsFunctions.ts |
This file contains hidden or 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
#Native Instruments software uses PORT 5562 ON TCP (NTKDaemon) | |
#Run CMD as Administrador and write: | |
netstat -ano | findstr :5563 | |
taskkill /PID <PID> /F |