Configure Unity's Smart Merge tool with Git for collaborative development
...without hardcoding the Editor path anywhere
Windows only
touch .gitconfig| package com.fps | |
| import android.view.Choreographer | |
| import androidx.compose.material3.Text | |
| import androidx.compose.runtime.* | |
| import androidx.compose.ui.Modifier | |
| import androidx.compose.ui.text.font.FontStyle | |
| import kotlin.math.roundToInt | |
| private const val UPDATE_FPS_EVERY_MS = 60 |
...without hardcoding the Editor path anywhere
Windows only
touch .gitconfig| #Requires AutoHotkey v2.0 | |
| ; Optimizations | |
| ProcessSetPriority "High" | |
| ListLines 0 | |
| SetDefaultMouseSpeed 0 | |
| SetControlDelay 0 | |
| SetKeyDelay 0 | |
| SetMouseDelay 0 | |
| !i::Up |
| #!/bin/sh | |
| read -p 'Password: ' password | |
| hash=`echo -n $password | sha1sum | awk '{ print $1 }'` | |
| echo | |
| echo SHA1 hash: $hash | |
| prefix=${hash:0:5} |