[FIX] renamed uses of main_character to MainCharacter in in_Game_secene

This commit is contained in:
Nathalie Seen
2021-06-08 11:59:58 +02:00
parent 69d88ab1c1
commit ae93ed6b34
2 changed files with 8 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ namespace entities
follow_position.z += 100;
//set position to follow a bit lower
follow_position.y += 50;
//move position from original position to fiven position with smoothing
//move position from original position to given position with smoothing
position = toolbox::Lerp(position, follow_position, 0.1);
}