- Home /
what programming language is used to create slender?
Answer by Bunny83 · Sep 13, 2012 at 12:48 AM
I never played the game, but i just downloaded it to see how it's done ;)
The answer is: They mixed UnityScript and C# scripts almost 50 - 50. However it seems they included a lot scripts that aren't even used.
Also it's a pain to see another Unity game where the developers almost exclusively use FixedUpdate for everything... Please, don't do that. It causes a lot (really a lot) problems. Especially Input detection. Movement and rotation in FixedUpdate will look and feel even more choppy. Generally do everything in Update that doesn't use forces on rigidbodies.
Answer by chrisall76 · Sep 13, 2012 at 12:07 AM
Probably C#, but the same can be done with the other Unity coding lanuages.
Your answer

Follow this Question
Related Questions
Distribute terrain in zones 3 Answers
Multiple Cars not working 1 Answer
A node in a childnode? 1 Answer
How to pass Java object to C#? 2 Answers
Button to change layers 1 Answer