Began work on input.

This commit is contained in:
2019-03-09 00:50:46 -06:00
parent b20ef57991
commit 97a65abec7
4 changed files with 22 additions and 1 deletions

Binary file not shown.

View File

@@ -1193,6 +1193,11 @@
</summary>
<param name="name">Name of page to remove.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.ClearPages">
<summary>
Removes all pages.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.LerpToPage(RecrownedAthenaeum.UI.BookSystem.Page)">
<summary>
Perform a step of linear interpolation to the given page.
@@ -1205,6 +1210,20 @@
</summary>
<param name="page">Page to go to.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.KeyboardStateChanged(Microsoft.Xna.Framework.Input.KeyboardState)">
<summary>
Passes the new keyboard state down to each page in order of when it was added.
</summary>
<param name="state"></param>
<returns>True if the state change should to trigger further input listeners.</returns>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.MouseStateChanged(Microsoft.Xna.Framework.Input.MouseState)">
<summary>
Passes the new mouse state down to each page in order of when it was added.
</summary>
<param name="state"></param>
<returns>True if the state change should to trigger further input listeners.</returns>
</member>
<member name="T:RecrownedAthenaeum.UI.BookSystem.Page">
<summary>
A page a part of a <see cref="T:RecrownedAthenaeum.UI.BookSystem.Book"/>.