<p>The function .toggleVisible() will change an object's visibility. In other words, if an object is visible, .toggleVisible() will make it invisible. If an object is not visible, .toggleVisible() will make it visible. .toggleVisible() takes in no parameters.</p>
<pre><code>object.toggleVisible();
//changes the visibility of 'object'</code></pre>
<h4>See Further:</h4>
<olclass="more">
<li>Hiding Ninja</li>
<li>Ninja Supplies</li>
</ol>
</a>
</div>
<br>
<divclass="item"><!--done-->
<aname="visible">
<h3>.visible()</h3>
<p>The function .visible() sets whether or not an object is visible. The function takes in one parameter, true or false, to set the visibility. The function can also return whether an object is visible.</p>
<pre><code>object.visible(true);
//makes 'object' visible</code></pre>
<h4>See Further:</h4>
<olclass="more">
<li>Whack a Ninja</li>
<li>Zapper Part 1</li>
</ol>
</a>
</div>
<br>
<divclass="item"><!--done-->
<aname="fill">
<h3>.fill()</h3>
<p>The function .fill() will fill in an object with a specified color. The function makes use of hexadecimal colors to achieve this. .fill() accepts a single string containing a ‘#’ symbol, followed by the six digit hexadecimal color that the object will be filled with.</p>
<pre><code>object.fill("#00fafa");
//fills in the 'object' with the color 00fafa</code></pre>
<h4>See Further:</h4>
<olclass="more">
<li>Rain Catcher Part 6</li>
<li>Color Picker</li>
<li><ahref="https://www.google.com/search?q=color+picker">RGB and Hex Picker</a></li>