1

I've been trying to get the intellisense autocompletion to work with Unity, but after a day of trying to make it work, no solution. Using C#

I'm not asking to solutions on this problem, but to ask where the documentation is found

Solution: @John https://docs.unity3d.com/ScriptReference/Transform.html

This has all the scripts/functions that intellisense gives you.

IAmAlsoLearning
  • 21
  • 2
  • 10
  • Do you mean that you're searching for the [Unity documentation pages](https://docs.unity3d.com/ScriptReference/Transform.html)? – ProgrammingLlama Oct 05 '18 at 05:54
  • 1
    Yes, thanks I didn't realise it would have a simple name like 'Unity documentation pages'! Thanks for that, now I might be able to adventure into the C# realm on myself :D – IAmAlsoLearning Oct 05 '18 at 07:14

1 Answers1

1

Check THIS. You can find everthing there. For example, if you want to implement method from MonoBehavoiur use Ctrl+Shift+M or use Ctrl + Space with all suggestions.

ProgrammingLlama
  • 36,677
  • 7
  • 67
  • 86
Morasiu
  • 1,204
  • 2
  • 16
  • 38