↧
Answer by 3j-
Found a solution. Turn off "Auto Refresh" in preferences. Close Unity. Re-open unity. Turn "Auto Refresh" back on. Edit: nevermind, it broke again almost immediately
View ArticleAnswer by 3j-
Saw this on another answers page. You can't modify a WWWForm's headers directly, you have to create your own: (C#) var form = new WWWForm(); form.AddField( "SomeKey", "SomeValue" ); var headers = new...
View ArticleAnswer by 3j-
I like to split these problems out into two components. Figure out how long it will take your missile to reach your target, then use that time to predict where your target will be. To figure out the...
View ArticleAnswer by 3j-
Ran in to this problem today. I think you can only use these functions in the OnSceneGUI() function.
View Article