You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.5 KiB
Plaintext
32 lines
1.5 KiB
Plaintext
<p>The inspect menu is a PopupMenu that gives options for interaction with its subject. It rests at res://UI/InspectMenu/InspectMenu.tscn. <br></p>
|
|
<br>
|
|
<h3>flow </h3>
|
|
<p>The inspect method is the entry point. Inspect > set_subject > _about_to_show > make_label<br></p>
|
|
<br>
|
|
<h3>signals </h3>
|
|
<p><ul>
|
|
<li>• <b>id_pressed</b>: connects the InspectMenu's signal to the subject's id_pressed method. Used to execute the associated method via pressing an inspect option. </li>
|
|
<li>• <b>about_to_show</b>: connects the InspectMenu's signal to its own '_about_to_show' method. </li>
|
|
</ul><br>
|
|
<br>
|
|
<h3>variables </h3>
|
|
<p><ul>
|
|
<li>• <b>subject</b>: the <a href="/blessfrey-gdd/docs/tangible">tangible entity</a> being inspected. Inspect options will be enacted on it. </li>
|
|
<li>• <b>is_connected</b>: ensures 'about_to_show' is properly connected. </li>
|
|
<li>• <b>label</b>: Label. Holds the subject's display name. </li>
|
|
</ul><br></p>
|
|
<br>
|
|
<h3>methods </h3>
|
|
<p>void set_subject (Object new_subject) <br></p>
|
|
<p>tear down old subject + set up new subject <br></p>
|
|
<br>
|
|
<p>void inspect (Object new_subject) <br></p>
|
|
<p>set up inspect menu <br></p>
|
|
<br>
|
|
<p>Object make_label () <br></p>
|
|
<p>returns a label with the name set. (Subject requires write_name()) <br></p>
|
|
<br>
|
|
<p>void _about_to_show () <br></p>
|
|
<p>resets the inspect menu, adds a label, and adds inspect options from the subject. <br></p>
|
|
<br>
|