Just a heads-up, which you're probably already aware of, but I wanted to report it just in case. The XML mismatched documentation tag "returns" in this block of MenuElement.cs code has my IDE all in a tizzy (joking). Not very high priority, but an easy win if you need one some day during a harsh code slog.
/**
* <summary>Gets the slot index that reference a particular GameObject</summary>
* <param name = "gameObject">The GameObject to check for</param>
* <returns>The slot index that references the GameObject</param>
*/
public virtual int GetSlotIndex (GameObject gameObject)
{
return -1;
}
Looks like there may be a few like that in MenuElement.cs, actually ... just saw ones above UpdateVariableReferences and ReferencesObjectOrID.
Comments
Just a heads-up, which you're probably already aware of, but I wanted to report it just in case. The XML mismatched documentation tag "returns" in this block of
MenuElement.cscode has my IDE all in a tizzy (joking). Not very high priority, but an easy win if you need one some day during a harsh code slog.Looks like there may be a few like that in
MenuElement.cs, actually ... just saw ones aboveUpdateVariableReferencesandReferencesObjectOrID.Very respectfully,
Tyler
Good spot Tyler, thank you!