Updated references.
This commit is contained in:
parent
0588cd0515
commit
99e4530407
Binary file not shown.
@ -4,70 +4,70 @@
|
|||||||
<name>RecrownedAthenaeum</name>
|
<name>RecrownedAthenaeum</name>
|
||||||
</assembly>
|
</assembly>
|
||||||
<members>
|
<members>
|
||||||
<member name="T:RecrownedAthenaeum.Camera.Camera">
|
<member name="T:RecrownedAthenaeum.Camera.Camera3D">
|
||||||
<summary>
|
<summary>
|
||||||
A generic 3D camera.
|
A generic 3D camera.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="F:RecrownedAthenaeum.Camera.Camera.zoom">
|
<member name="F:RecrownedAthenaeum.Camera.Camera3D.position">
|
||||||
<summary>
|
|
||||||
Current zoom level.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:RecrownedAthenaeum.Camera.Camera.position">
|
|
||||||
<summary>
|
<summary>
|
||||||
Current position in the world.
|
Current position in the world.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="F:RecrownedAthenaeum.Camera.Camera.lookAt">
|
<member name="F:RecrownedAthenaeum.Camera.Camera3D.lookAt">
|
||||||
<summary>
|
<summary>
|
||||||
The place the 3D camera is looking at.
|
The place the 3D camera is looking at.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="F:RecrownedAthenaeum.Camera.Camera.upDirection">
|
<member name="F:RecrownedAthenaeum.Camera.Camera3D.upDirection">
|
||||||
<summary>
|
<summary>
|
||||||
The direction up is for the 3D camera.
|
The direction up is for the 3D camera.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="F:RecrownedAthenaeum.Camera.Camera.worldMatrix">
|
<member name="F:RecrownedAthenaeum.Camera.Camera3D.worldMatrix">
|
||||||
<summary>
|
<summary>
|
||||||
The transform matrix representing the world (rotation and translations of the original world).
|
The transform matrix representing the world (rotation and translations of the original world).
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:RecrownedAthenaeum.Camera.Camera.ViewMatrix">
|
<member name="P:RecrownedAthenaeum.Camera.Camera3D.ViewMatrix">
|
||||||
<summary>
|
<summary>
|
||||||
The view matrix that describes where the camera looks.
|
The view matrix that describes where the camera looks.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="F:RecrownedAthenaeum.Camera.Camera.projectionMatrix">
|
<member name="F:RecrownedAthenaeum.Camera.Camera3D.projectionMatrix">
|
||||||
<summary>
|
<summary>
|
||||||
The projection matrix.
|
The projection matrix.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:RecrownedAthenaeum.Camera.Camera.TransformationMatrix">
|
<member name="P:RecrownedAthenaeum.Camera.Camera3D.TransformationMatrix">
|
||||||
<summary>
|
<summary>
|
||||||
The final transformation matrix.
|
The final transformation matrix.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="F:RecrownedAthenaeum.Camera.Camera.graphicsDevice">
|
<member name="F:RecrownedAthenaeum.Camera.Camera3D.graphicsDevice">
|
||||||
<summary>
|
<summary>
|
||||||
The graphics device used
|
The graphics device used
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:RecrownedAthenaeum.Camera.Camera.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice)">
|
<member name="M:RecrownedAthenaeum.Camera.Camera3D.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice)">
|
||||||
<summary>
|
<summary>
|
||||||
Constructs 2D camera.
|
Constructs 3D camera with an orthographic projection matrix with dimensions of graphics devices viewport. All changes to matrices should have apply called after changes.
|
||||||
</summary>
|
</summary>
|
||||||
<param name="graphicsDevice">The graphics device to use. Will use graphics device from <see cref="T:RecrownedAthenaeum.Configuration"/>'s graphics device manager if this is null which it is by default.</param>
|
<param name="graphicsDevice">The graphics device to use. Will use graphics device from <see cref="T:RecrownedAthenaeum.Configuration"/>'s graphics device manager if this is null which it is by default.</param>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:RecrownedAthenaeum.Camera.Camera.Apply">
|
<member name="M:RecrownedAthenaeum.Camera.Camera3D.Apply">
|
||||||
<summary>
|
<summary>
|
||||||
Applies the changes to the fields and properties of the camera.
|
Applies the changes to the fields and properties of the camera.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:RecrownedAthenaeum.Camera.Camera3D.Center">
|
||||||
|
<summary>
|
||||||
|
Centers the camera to middle of width and height of game window.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="T:RecrownedAthenaeum.Camera.Camera2D">
|
<member name="T:RecrownedAthenaeum.Camera.Camera2D">
|
||||||
<summary>
|
<summary>
|
||||||
A virtual 2D camera that wraps the normal <see cref="T:RecrownedAthenaeum.Camera.Camera"/>. Default projection is orthographic.
|
A virtual 2D camera that wraps the normal <see cref="T:RecrownedAthenaeum.Camera.Camera3D"/>. Default projection is orthographic.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:RecrownedAthenaeum.Camera.Camera2D.Position">
|
<member name="P:RecrownedAthenaeum.Camera.Camera2D.Position">
|
||||||
@ -75,10 +75,11 @@
|
|||||||
The 2D position.
|
The 2D position.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:RecrownedAthenaeum.Camera.Camera2D.#ctor">
|
<member name="M:RecrownedAthenaeum.Camera.Camera2D.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice)">
|
||||||
<summary>
|
<summary>
|
||||||
A 2D camera from the generic <see cref="T:RecrownedAthenaeum.Camera.Camera"/>.
|
A 2D camera from the generic <see cref="T:RecrownedAthenaeum.Camera.Camera3D"/>.
|
||||||
</summary>
|
</summary>
|
||||||
|
<param name="graphicsDevice">The graphics device to use if not using the one in <see cref="T:RecrownedAthenaeum.Configuration"/>.</param>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:RecrownedAthenaeum.Camera.Camera2D.LinearInterpolationToPosition(System.Single,Microsoft.Xna.Framework.Vector2,System.Single)">
|
<member name="M:RecrownedAthenaeum.Camera.Camera2D.LinearInterpolationToPosition(System.Single,Microsoft.Xna.Framework.Vector2,System.Single)">
|
||||||
<summary>
|
<summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user