Rename Methods to Start with Capital Letter

Author: 
el_bearduno
el_bearduno's picture
Assignee: 
Labels: 
Status: 
Priority: 

There are a number of methods in the Tiler.cs file that have lower case names. For example: 

public void fillRectArray()
{
    Rooms = GetComponentsInChildren<RectTransform>().ToList<RectTransform>();
}

Please refactor all of these to start with a capital letter like so:
 

public void FillRectArray()

 

Add new comment

Basic Editor

  • Allowed HTML tags: <a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

Plain Text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.