Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am using MonoDevelop 2.4.2 (Unity, Javascript) and code completion works fine for everything inside my class scope. But it doenst work for properties/functions of instances and static classes.

for example, when typing:

this.myFunct... - pops up
MyStaticCla... - pops up
MyStaticClass.myFun... - nothing happens
myobject.myPrope... - nothing happens

do i miss something?

share|improve this question
Which unity do you mean? Ubuntu Unity or Unity3D? – Lex Li Feb 10 '12 at 12:09
Javascript for Unity3D. – DrElectro Feb 10 '12 at 12:20
Unity is not named Unity3D. The tag and description of the tag are broken; unity-(3d) would be more appropriate, if parentheses are possible. Anyway, MonoDevelop's autocomplete is completely unreliable. – Jessy Feb 10 '12 at 14:59
the tag works pretty good for me.. – DrElectro Feb 11 '12 at 19:54
ah ok now i understand what you mean.. however, can you suggest any other editor for unity3d with autocomplete? – DrElectro Feb 11 '12 at 20:01

3 Answers

It seems there's an issue with the autocomplete files in mac os x. here's a link on the solution.

http://answers.unity3d.com/questions/121469/monodevelop-not-showing-autocomplete-intellisense.html

share|improve this answer
Can you next time please post the answer here? – Johnny Graber Nov 27 '12 at 9:48

Visual Studio works great with auto-completion. But its setuo is +2.5 GB .. Apart from mono and VS, I don't see any other IDE's with Auto-Completion. Anyways, M using NotePad++( yeah, learning without auto-coms is hard but fruitful :) )

share|improve this answer

Unity has no autocomplete for private variables, static variables, and no description of some function methods.

Instead of finding the variable on autocomplete, you have to rewrite it and be sure to have the right spelling.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.