06-26-2019 08:40 PM
07-02-2019 09:08 PM
07-03-2019 03:07 PM
07-03-2019 06:47 PM
04-28-2023 10:23 PM
1. No, 20 is 20 degrees downward, if you do 90 it will face straight down.
2. yes, dbl click any script in project window to edit. You can also dbl click scripts in the inspector to open VSS and edit scripts. Unity will also open any assets in project if you have an associated external editor configured in project unity preferences.
3. You cannot just paste and overwrite a script. In unity a script names MyScript MUST have the same class in the code. So if you pasted
public class someOtherClassName: MonoBehaviour
into a file calledMyScript.cs it will compile but it will not run.