mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-01 03:10:49 +01:00
1517 lines
65 KiB
YAML
Generated
1517 lines
65 KiB
YAML
Generated
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
commentId: T:TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
id: GetAndSitDownBehavior
|
|
parent: TinyLife.Actions.Behaviors
|
|
children:
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.#ctor(TinyLife.Actions.Action,System.Boolean,System.Boolean,TinyLife.Objects.FurnitureType[])
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.CreateFirstActions
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetIconObject
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction``1(TinyLife.Actions.ActionInfo,TinyLife.Objects.FurnitureType[])
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem``1
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Initialize
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetAndSitDownBehavior
|
|
nameWithType: GetAndSitDownBehavior
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
type: Class
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: >-
|
|
A get-and-sit-down behavior is an <xref href="TinyLife.Actions.Behaviors.ActionBehavior" data-throw-if-not-resolved="false"></xref> where a person gets an action object that can be picked up (like a plate of food) and interacts with it on a chair or at a standing desk.
|
|
|
|
This behavior considers a multitude of possible circumstances for the action, including the item being on a counter, on the ground, already on a valid table, in the person's hand, and more.
|
|
|
|
Note that <xref href="TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction%60%601(TinyLife.Actions.ActionInfo%2cTinyLife.Objects.FurnitureType%5b%5d)" data-throw-if-not-resolved="false"></xref> should be used to ensure that the correct interaction item is returned in every circumstance.
|
|
example: []
|
|
syntax:
|
|
content: 'public class GetAndSitDownBehavior : ActionBehavior'
|
|
content.vb: Public Class GetAndSitDownBehavior Inherits ActionBehavior
|
|
inheritance:
|
|
- System.Object
|
|
- TinyLife.Actions.Behaviors.ActionBehavior
|
|
inheritedMembers:
|
|
- TinyLife.Actions.Behaviors.ActionBehavior.Action
|
|
- TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
|
|
- TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
|
|
- TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
|
- TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
|
- TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
|
|
- System.Object.Equals(System.Object)
|
|
- System.Object.Equals(System.Object,System.Object)
|
|
- System.Object.GetHashCode
|
|
- System.Object.GetType
|
|
- System.Object.MemberwiseClone
|
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
|
- System.Object.ToString
|
|
extensionMethods:
|
|
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.#ctor(TinyLife.Actions.Action,System.Boolean,System.Boolean,TinyLife.Objects.FurnitureType[])
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.#ctor(TinyLife.Actions.Action,System.Boolean,System.Boolean,TinyLife.Objects.FurnitureType[])
|
|
id: '#ctor(TinyLife.Actions.Action,System.Boolean,System.Boolean,TinyLife.Objects.FurnitureType[])'
|
|
parent: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetAndSitDownBehavior(Action, bool, bool, params FurnitureType[])
|
|
nameWithType: GetAndSitDownBehavior.GetAndSitDownBehavior(Action, bool, bool, params FurnitureType[])
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetAndSitDownBehavior(TinyLife.Actions.Action, bool, bool, params TinyLife.Objects.FurnitureType[])
|
|
type: Constructor
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: Creates a new get-and-sit-down behavior with the given settings
|
|
example: []
|
|
syntax:
|
|
content: public GetAndSitDownBehavior(Action action, bool forceTable, bool allowStandingDesk, params FurnitureType[] workItems)
|
|
parameters:
|
|
- id: action
|
|
type: TinyLife.Actions.Action
|
|
description: The action that uses this behavior
|
|
- id: forceTable
|
|
type: System.Boolean
|
|
description: A property that determines whether this action requires a table to be executed. If this value is false, the person is able to sit down on a chair or a bench without a table if there is none present.
|
|
- id: allowStandingDesk
|
|
type: System.Boolean
|
|
description: A property that determines whether this action can be executed at a <xref href="TinyLife.Objects.ObjectCategory.StandingDesk" data-throw-if-not-resolved="false"></xref>
|
|
- id: workItems
|
|
type: TinyLife.Objects.FurnitureType[]
|
|
description: An array of <xref href="TinyLife.Objects.FurnitureType" data-throw-if-not-resolved="false"></xref> instances that represents all ietms which can be gotten and sat down with. This array is used to check the validity of a person's held item and items on tables.
|
|
content.vb: Public Sub New(action As Action, forceTable As Boolean, allowStandingDesk As Boolean, ParamArray workItems As FurnitureType())
|
|
overload: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.#ctor*
|
|
nameWithType.vb: GetAndSitDownBehavior.New(Action, Boolean, Boolean, ParamArray FurnitureType())
|
|
fullName.vb: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.New(TinyLife.Actions.Action, Boolean, Boolean, ParamArray TinyLife.Objects.FurnitureType())
|
|
name.vb: New(Action, Boolean, Boolean, ParamArray FurnitureType())
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.CreateFirstActions
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.CreateFirstActions
|
|
id: CreateFirstActions
|
|
parent: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: CreateFirstActions()
|
|
nameWithType: GetAndSitDownBehavior.CreateFirstActions()
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.CreateFirstActions()
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: >-
|
|
Creates a set of actions that should be executed before the main <xref href="TinyLife.Actions.Behaviors.ActionBehavior.Action" data-throw-if-not-resolved="false"></xref> starts.
|
|
|
|
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.BehaviorAction.CreateFirstActions" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public override IEnumerable<Action> CreateFirstActions()
|
|
return:
|
|
type: System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
|
|
description: ''
|
|
content.vb: Public Overrides Function CreateFirstActions() As IEnumerable(Of Action)
|
|
overridden: TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
|
|
overload: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.CreateFirstActions*
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Initialize
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Initialize
|
|
id: Initialize
|
|
parent: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Initialize()
|
|
nameWithType: GetAndSitDownBehavior.Initialize()
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Initialize()
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: >-
|
|
Initializes this action behavior.
|
|
|
|
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.MultiAction.AndThenInitialize" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public override void Initialize()
|
|
content.vb: Public Overrides Sub Initialize()
|
|
overridden: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
|
|
overload: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Initialize*
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
id: Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
parent: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Update(GameTime, TimeSpan, float)
|
|
nameWithType: GetAndSitDownBehavior.Update(GameTime, TimeSpan, float)
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: >-
|
|
Updates this action behavior every update frame.
|
|
|
|
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public override void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
|
|
parameters:
|
|
- id: time
|
|
type: Microsoft.Xna.Framework.GameTime
|
|
description: The game time
|
|
- id: passedInGame
|
|
type: System.TimeSpan
|
|
description: The amount of time that has passed since the last update frame
|
|
- id: speedMultiplier
|
|
type: System.Single
|
|
description: The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
|
|
content.vb: Public Overrides Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
|
|
overridden: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
overload: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update*
|
|
nameWithType.vb: GetAndSitDownBehavior.Update(GameTime, TimeSpan, Single)
|
|
fullName.vb: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
|
|
name.vb: Update(GameTime, TimeSpan, Single)
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetIconObject
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetIconObject
|
|
id: GetIconObject
|
|
parent: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetIconObject()
|
|
nameWithType: GetAndSitDownBehavior.GetIconObject()
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetIconObject()
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: >-
|
|
Returns this action behavior's icon object.
|
|
|
|
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.Action.GetIconObject" data-throw-if-not-resolved="false"></xref>.
|
|
|
|
By default, this method returns the underlying <xref href="TinyLife.Actions.ActionInfo" data-throw-if-not-resolved="false"></xref>'s <xref href="TinyLife.Actions.ActionInfo.GetActionObject%60%601(System.Boolean)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public override MapObject GetIconObject()
|
|
return:
|
|
type: TinyLife.Objects.MapObject
|
|
description: The icon object
|
|
content.vb: Public Overrides Function GetIconObject() As MapObject
|
|
overridden: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
|
|
overload: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetIconObject*
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
id: GetNextAction(TinyLife.Actions.CompletionType)
|
|
parent: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetNextAction(CompletionType)
|
|
nameWithType: GetAndSitDownBehavior.GetNextAction(CompletionType)
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: >-
|
|
Returns the action that should be executed after this action behavior's underlying <xref href="TinyLife.Actions.Behaviors.ActionBehavior.Action" data-throw-if-not-resolved="false"></xref> completes.
|
|
|
|
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public override Action GetNextAction(CompletionType completion)
|
|
parameters:
|
|
- id: completion
|
|
type: TinyLife.Actions.CompletionType
|
|
description: The underlying action's completion type
|
|
return:
|
|
type: TinyLife.Actions.Action
|
|
description: The action that should be executed next, or null
|
|
content.vb: Public Overrides Function GetNextAction(completion As CompletionType) As Action
|
|
overridden: TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
overload: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetNextAction*
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem``1
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem``1
|
|
id: GetInteractingItem``1
|
|
parent: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetInteractingItem<T>()
|
|
nameWithType: GetAndSitDownBehavior.GetInteractingItem<T>()
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem<T>()
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: >-
|
|
A helper method that returns the item instance that is currently being interacted with in this action.
|
|
|
|
Since this action type is rather complex, this is the favored way over <xref href="TinyLife.Actions.ActionInfo.GetActionObject%60%601(System.Boolean)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: 'public T GetInteractingItem<T>() where T : Furniture'
|
|
typeParameters:
|
|
- id: T
|
|
description: The type that the object is expected to be
|
|
return:
|
|
type: '{T}'
|
|
description: The object, or null if there is none
|
|
content.vb: Public Function GetInteractingItem(Of T As Furniture)() As T
|
|
overload: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem*
|
|
nameWithType.vb: GetAndSitDownBehavior.GetInteractingItem(Of T)()
|
|
fullName.vb: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem(Of T)()
|
|
name.vb: GetInteractingItem(Of T)()
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction``1(TinyLife.Actions.ActionInfo,TinyLife.Objects.FurnitureType[])
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction``1(TinyLife.Actions.ActionInfo,TinyLife.Objects.FurnitureType[])
|
|
id: GetInteractingItemForAction``1(TinyLife.Actions.ActionInfo,TinyLife.Objects.FurnitureType[])
|
|
parent: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetInteractingItemForAction<T>(ActionInfo, params FurnitureType[])
|
|
nameWithType: GetAndSitDownBehavior.GetInteractingItemForAction<T>(ActionInfo, params FurnitureType[])
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction<T>(TinyLife.Actions.ActionInfo, params TinyLife.Objects.FurnitureType[])
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions.Behaviors
|
|
summary: >-
|
|
A helper method that returns the item instance that is currently being interacted with in this action.
|
|
|
|
Since this action type is rather complex, this is the favored way over <xref href="TinyLife.Actions.ActionInfo.GetActionObject%60%601(System.Boolean)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: 'public static T GetInteractingItemForAction<T>(ActionInfo info, params FurnitureType[] workItems) where T : Furniture'
|
|
parameters:
|
|
- id: info
|
|
type: TinyLife.Actions.ActionInfo
|
|
- id: workItems
|
|
type: TinyLife.Objects.FurnitureType[]
|
|
typeParameters:
|
|
- id: T
|
|
description: The type that the object is expected to be
|
|
return:
|
|
type: '{T}'
|
|
description: The object, or null if there is none
|
|
content.vb: Public Shared Function GetInteractingItemForAction(Of T As Furniture)(info As ActionInfo, ParamArray workItems As FurnitureType()) As T
|
|
overload: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction*
|
|
nameWithType.vb: GetAndSitDownBehavior.GetInteractingItemForAction(Of T)(ActionInfo, ParamArray FurnitureType())
|
|
fullName.vb: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction(Of T)(TinyLife.Actions.ActionInfo, ParamArray TinyLife.Objects.FurnitureType())
|
|
name.vb: GetInteractingItemForAction(Of T)(ActionInfo, ParamArray FurnitureType())
|
|
references:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior
|
|
commentId: T:TinyLife.Actions.Behaviors.ActionBehavior
|
|
parent: TinyLife.Actions.Behaviors
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html
|
|
name: ActionBehavior
|
|
nameWithType: ActionBehavior
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction``1(TinyLife.Actions.ActionInfo,TinyLife.Objects.FurnitureType[])
|
|
commentId: M:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction``1(TinyLife.Actions.ActionInfo,TinyLife.Objects.FurnitureType[])
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_GetInteractingItemForAction__1_TinyLife_Actions_ActionInfo_TinyLife_Objects_FurnitureType___
|
|
name: GetInteractingItemForAction<T>(ActionInfo, params FurnitureType[])
|
|
nameWithType: GetAndSitDownBehavior.GetInteractingItemForAction<T>(ActionInfo, params FurnitureType[])
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction<T>(TinyLife.Actions.ActionInfo, params TinyLife.Objects.FurnitureType[])
|
|
nameWithType.vb: GetAndSitDownBehavior.GetInteractingItemForAction(Of T)(ActionInfo, ParamArray FurnitureType())
|
|
fullName.vb: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction(Of T)(TinyLife.Actions.ActionInfo, ParamArray TinyLife.Objects.FurnitureType())
|
|
name.vb: GetInteractingItemForAction(Of T)(ActionInfo, ParamArray FurnitureType())
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction``1(TinyLife.Actions.ActionInfo,TinyLife.Objects.FurnitureType[])
|
|
name: GetInteractingItemForAction
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_GetInteractingItemForAction__1_TinyLife_Actions_ActionInfo_TinyLife_Objects_FurnitureType___
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
- name: (
|
|
- uid: TinyLife.Actions.ActionInfo
|
|
name: ActionInfo
|
|
href: TinyLife.Actions.ActionInfo.html
|
|
- name: ','
|
|
- name: " "
|
|
- name: params
|
|
- name: " "
|
|
- uid: TinyLife.Objects.FurnitureType
|
|
name: FurnitureType
|
|
href: TinyLife.Objects.FurnitureType.html
|
|
- name: '['
|
|
- name: ']'
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction``1(TinyLife.Actions.ActionInfo,TinyLife.Objects.FurnitureType[])
|
|
name: GetInteractingItemForAction
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_GetInteractingItemForAction__1_TinyLife_Actions_ActionInfo_TinyLife_Objects_FurnitureType___
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- name: (
|
|
- uid: TinyLife.Actions.ActionInfo
|
|
name: ActionInfo
|
|
href: TinyLife.Actions.ActionInfo.html
|
|
- name: ','
|
|
- name: " "
|
|
- name: ParamArray
|
|
- name: " "
|
|
- uid: TinyLife.Objects.FurnitureType
|
|
name: FurnitureType
|
|
href: TinyLife.Objects.FurnitureType.html
|
|
- name: (
|
|
- name: )
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors
|
|
commentId: N:TinyLife.Actions.Behaviors
|
|
href: TinyLife.html
|
|
name: TinyLife.Actions.Behaviors
|
|
nameWithType: TinyLife.Actions.Behaviors
|
|
fullName: TinyLife.Actions.Behaviors
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Actions
|
|
name: Actions
|
|
href: TinyLife.Actions.html
|
|
- name: .
|
|
- uid: TinyLife.Actions.Behaviors
|
|
name: Behaviors
|
|
href: TinyLife.Actions.Behaviors.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Actions
|
|
name: Actions
|
|
href: TinyLife.Actions.html
|
|
- name: .
|
|
- uid: TinyLife.Actions.Behaviors
|
|
name: Behaviors
|
|
href: TinyLife.Actions.Behaviors.html
|
|
- uid: System.Object
|
|
commentId: T:System.Object
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
name: object
|
|
nameWithType: object
|
|
fullName: object
|
|
nameWithType.vb: Object
|
|
fullName.vb: Object
|
|
name.vb: Object
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Action
|
|
commentId: F:TinyLife.Actions.Behaviors.ActionBehavior.Action
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Action
|
|
name: Action
|
|
nameWithType: ActionBehavior.Action
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Action
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
|
|
commentId: P:TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_FullyInProgress
|
|
name: FullyInProgress
|
|
nameWithType: ActionBehavior.FullyInProgress
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
|
|
name: CreateLastActions()
|
|
nameWithType: ActionBehavior.CreateLastActions()
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions()
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
|
|
name: CreateLastActions
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
|
|
name: CreateLastActions
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CanMultitask_TinyLife_Actions_Action_
|
|
name: CanMultitask(Action)
|
|
nameWithType: ActionBehavior.CanMultitask(Action)
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
|
name: CanMultitask
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CanMultitask_TinyLife_Actions_Action_
|
|
- name: (
|
|
- uid: TinyLife.Actions.Action
|
|
name: Action
|
|
href: TinyLife.Actions.Action.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
|
name: CanMultitask
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CanMultitask_TinyLife_Actions_Action_
|
|
- name: (
|
|
- uid: TinyLife.Actions.Action
|
|
name: Action
|
|
href: TinyLife.Actions.Action.html
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_OnCompleted_TinyLife_Actions_CompletionType_
|
|
name: OnCompleted(CompletionType)
|
|
nameWithType: ActionBehavior.OnCompleted(CompletionType)
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
|
name: OnCompleted
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_OnCompleted_TinyLife_Actions_CompletionType_
|
|
- name: (
|
|
- uid: TinyLife.Actions.CompletionType
|
|
name: CompletionType
|
|
href: TinyLife.Actions.CompletionType.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
|
name: OnCompleted
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_OnCompleted_TinyLife_Actions_CompletionType_
|
|
- name: (
|
|
- uid: TinyLife.Actions.CompletionType
|
|
name: CompletionType
|
|
href: TinyLife.Actions.CompletionType.html
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
isExternal: true
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateDefaultInstance_System_Type_TinyLife_Actions_Action_
|
|
name: CreateDefaultInstance(Type, Action)
|
|
nameWithType: ActionBehavior.CreateDefaultInstance(Type, Action)
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type, TinyLife.Actions.Action)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
|
|
name: CreateDefaultInstance
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateDefaultInstance_System_Type_TinyLife_Actions_Action_
|
|
- name: (
|
|
- uid: System.Type
|
|
name: Type
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.type
|
|
- name: ','
|
|
- name: " "
|
|
- uid: TinyLife.Actions.Action
|
|
name: Action
|
|
href: TinyLife.Actions.Action.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
|
|
name: CreateDefaultInstance
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateDefaultInstance_System_Type_TinyLife_Actions_Action_
|
|
- name: (
|
|
- uid: System.Type
|
|
name: Type
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.type
|
|
- name: ','
|
|
- name: " "
|
|
- uid: TinyLife.Actions.Action
|
|
name: Action
|
|
href: TinyLife.Actions.Action.html
|
|
- name: )
|
|
- uid: System.Object.Equals(System.Object)
|
|
commentId: M:System.Object.Equals(System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
name: Equals(object)
|
|
nameWithType: object.Equals(object)
|
|
fullName: object.Equals(object)
|
|
nameWithType.vb: Object.Equals(Object)
|
|
fullName.vb: Object.Equals(Object)
|
|
name.vb: Equals(Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
name: Equals(object, object)
|
|
nameWithType: object.Equals(object, object)
|
|
fullName: object.Equals(object, object)
|
|
nameWithType.vb: Object.Equals(Object, Object)
|
|
fullName.vb: Object.Equals(Object, Object)
|
|
name.vb: Equals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.GetHashCode
|
|
commentId: M:System.Object.GetHashCode
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
name: GetHashCode()
|
|
nameWithType: object.GetHashCode()
|
|
fullName: object.GetHashCode()
|
|
nameWithType.vb: Object.GetHashCode()
|
|
fullName.vb: Object.GetHashCode()
|
|
spec.csharp:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.GetType
|
|
commentId: M:System.Object.GetType
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
name: GetType()
|
|
nameWithType: object.GetType()
|
|
fullName: object.GetType()
|
|
nameWithType.vb: Object.GetType()
|
|
fullName.vb: Object.GetType()
|
|
spec.csharp:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.MemberwiseClone
|
|
commentId: M:System.Object.MemberwiseClone
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
name: MemberwiseClone()
|
|
nameWithType: object.MemberwiseClone()
|
|
fullName: object.MemberwiseClone()
|
|
nameWithType.vb: Object.MemberwiseClone()
|
|
fullName.vb: Object.MemberwiseClone()
|
|
spec.csharp:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
name: ReferenceEquals(object, object)
|
|
nameWithType: object.ReferenceEquals(object, object)
|
|
fullName: object.ReferenceEquals(object, object)
|
|
nameWithType.vb: Object.ReferenceEquals(Object, Object)
|
|
fullName.vb: Object.ReferenceEquals(Object, Object)
|
|
name.vb: ReferenceEquals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.ToString
|
|
commentId: M:System.Object.ToString
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
name: ToString()
|
|
nameWithType: object.ToString()
|
|
fullName: object.ToString()
|
|
nameWithType.vb: Object.ToString()
|
|
fullName.vb: Object.ToString()
|
|
spec.csharp:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
parent: TinyLife.Utilities.Extensions
|
|
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
name: JsonCopy<GetAndSitDownBehavior>(GetAndSitDownBehavior)
|
|
nameWithType: Extensions.JsonCopy<GetAndSitDownBehavior>(GetAndSitDownBehavior)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.Behaviors.GetAndSitDownBehavior>(TinyLife.Actions.Behaviors.GetAndSitDownBehavior)
|
|
nameWithType.vb: Extensions.JsonCopy(Of GetAndSitDownBehavior)(GetAndSitDownBehavior)
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Behaviors.GetAndSitDownBehavior)(TinyLife.Actions.Behaviors.GetAndSitDownBehavior)
|
|
name.vb: JsonCopy(Of GetAndSitDownBehavior)(GetAndSitDownBehavior)
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.GetAndSitDownBehavior)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: <
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
name: GetAndSitDownBehavior
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html
|
|
- name: '>'
|
|
- name: (
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
name: GetAndSitDownBehavior
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.GetAndSitDownBehavior)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
name: GetAndSitDownBehavior
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html
|
|
- name: )
|
|
- name: (
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
|
|
name: GetAndSitDownBehavior
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html
|
|
- name: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
name: JsonCopy<T>(T)
|
|
nameWithType: Extensions.JsonCopy<T>(T)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
|
|
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
|
|
name.vb: JsonCopy(Of T)(T)
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
- name: (
|
|
- name: T
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- name: (
|
|
- name: T
|
|
- name: )
|
|
- uid: TinyLife.Utilities.Extensions
|
|
commentId: T:TinyLife.Utilities.Extensions
|
|
parent: TinyLife.Utilities
|
|
href: TinyLife.Utilities.Extensions.html
|
|
name: Extensions
|
|
nameWithType: Extensions
|
|
fullName: TinyLife.Utilities.Extensions
|
|
- uid: TinyLife.Utilities
|
|
commentId: N:TinyLife.Utilities
|
|
href: TinyLife.html
|
|
name: TinyLife.Utilities
|
|
nameWithType: TinyLife.Utilities
|
|
fullName: TinyLife.Utilities
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Utilities
|
|
name: Utilities
|
|
href: TinyLife.Utilities.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Utilities
|
|
name: Utilities
|
|
href: TinyLife.Utilities.html
|
|
- uid: TinyLife.Objects.ObjectCategory.StandingDesk
|
|
commentId: F:TinyLife.Objects.ObjectCategory.StandingDesk
|
|
href: TinyLife.Objects.ObjectCategory.html#TinyLife_Objects_ObjectCategory_StandingDesk
|
|
name: StandingDesk
|
|
nameWithType: ObjectCategory.StandingDesk
|
|
fullName: TinyLife.Objects.ObjectCategory.StandingDesk
|
|
- uid: TinyLife.Objects.FurnitureType
|
|
commentId: T:TinyLife.Objects.FurnitureType
|
|
parent: TinyLife.Objects
|
|
href: TinyLife.Objects.FurnitureType.html
|
|
name: FurnitureType
|
|
nameWithType: FurnitureType
|
|
fullName: TinyLife.Objects.FurnitureType
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.#ctor*
|
|
commentId: Overload:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.#ctor
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior__ctor_TinyLife_Actions_Action_System_Boolean_System_Boolean_TinyLife_Objects_FurnitureType___
|
|
name: GetAndSitDownBehavior
|
|
nameWithType: GetAndSitDownBehavior.GetAndSitDownBehavior
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetAndSitDownBehavior
|
|
nameWithType.vb: GetAndSitDownBehavior.New
|
|
fullName.vb: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.New
|
|
name.vb: New
|
|
- uid: TinyLife.Actions.Action
|
|
commentId: T:TinyLife.Actions.Action
|
|
parent: TinyLife.Actions
|
|
href: TinyLife.Actions.Action.html
|
|
name: Action
|
|
nameWithType: Action
|
|
fullName: TinyLife.Actions.Action
|
|
- uid: System.Boolean
|
|
commentId: T:System.Boolean
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
name: bool
|
|
nameWithType: bool
|
|
fullName: bool
|
|
nameWithType.vb: Boolean
|
|
fullName.vb: Boolean
|
|
name.vb: Boolean
|
|
- uid: TinyLife.Objects.FurnitureType[]
|
|
isExternal: true
|
|
href: TinyLife.Objects.FurnitureType.html
|
|
name: FurnitureType[]
|
|
nameWithType: FurnitureType[]
|
|
fullName: TinyLife.Objects.FurnitureType[]
|
|
nameWithType.vb: FurnitureType()
|
|
fullName.vb: TinyLife.Objects.FurnitureType()
|
|
name.vb: FurnitureType()
|
|
spec.csharp:
|
|
- uid: TinyLife.Objects.FurnitureType
|
|
name: FurnitureType
|
|
href: TinyLife.Objects.FurnitureType.html
|
|
- name: '['
|
|
- name: ']'
|
|
spec.vb:
|
|
- uid: TinyLife.Objects.FurnitureType
|
|
name: FurnitureType
|
|
href: TinyLife.Objects.FurnitureType.html
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Objects
|
|
commentId: N:TinyLife.Objects
|
|
href: TinyLife.html
|
|
name: TinyLife.Objects
|
|
nameWithType: TinyLife.Objects
|
|
fullName: TinyLife.Objects
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Objects
|
|
name: Objects
|
|
href: TinyLife.Objects.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Objects
|
|
name: Objects
|
|
href: TinyLife.Objects.html
|
|
- uid: TinyLife.Actions
|
|
commentId: N:TinyLife.Actions
|
|
href: TinyLife.html
|
|
name: TinyLife.Actions
|
|
nameWithType: TinyLife.Actions
|
|
fullName: TinyLife.Actions
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Actions
|
|
name: Actions
|
|
href: TinyLife.Actions.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Actions
|
|
name: Actions
|
|
href: TinyLife.Actions.html
|
|
- uid: TinyLife.Actions.BehaviorAction
|
|
commentId: T:TinyLife.Actions.BehaviorAction
|
|
parent: TinyLife.Actions
|
|
href: TinyLife.Actions.BehaviorAction.html
|
|
name: BehaviorAction
|
|
nameWithType: BehaviorAction
|
|
fullName: TinyLife.Actions.BehaviorAction
|
|
- uid: TinyLife.Actions.BehaviorAction.CreateFirstActions
|
|
commentId: M:TinyLife.Actions.BehaviorAction.CreateFirstActions
|
|
parent: TinyLife.Actions.BehaviorAction
|
|
href: TinyLife.Actions.BehaviorAction.html#TinyLife_Actions_BehaviorAction_CreateFirstActions
|
|
name: CreateFirstActions()
|
|
nameWithType: BehaviorAction.CreateFirstActions()
|
|
fullName: TinyLife.Actions.BehaviorAction.CreateFirstActions()
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.BehaviorAction.CreateFirstActions
|
|
name: CreateFirstActions
|
|
href: TinyLife.Actions.BehaviorAction.html#TinyLife_Actions_BehaviorAction_CreateFirstActions
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.BehaviorAction.CreateFirstActions
|
|
name: CreateFirstActions
|
|
href: TinyLife.Actions.BehaviorAction.html#TinyLife_Actions_BehaviorAction_CreateFirstActions
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateFirstActions
|
|
name: CreateFirstActions()
|
|
nameWithType: ActionBehavior.CreateFirstActions()
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions()
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
|
|
name: CreateFirstActions
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateFirstActions
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
|
|
name: CreateFirstActions
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateFirstActions
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.CreateFirstActions*
|
|
commentId: Overload:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.CreateFirstActions
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_CreateFirstActions
|
|
name: CreateFirstActions
|
|
nameWithType: GetAndSitDownBehavior.CreateFirstActions
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.CreateFirstActions
|
|
- uid: System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
|
|
commentId: T:System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.IEnumerable`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
name: IEnumerable<Action>
|
|
nameWithType: IEnumerable<Action>
|
|
fullName: System.Collections.Generic.IEnumerable<TinyLife.Actions.Action>
|
|
nameWithType.vb: IEnumerable(Of Action)
|
|
fullName.vb: System.Collections.Generic.IEnumerable(Of TinyLife.Actions.Action)
|
|
name.vb: IEnumerable(Of Action)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: <
|
|
- uid: TinyLife.Actions.Action
|
|
name: Action
|
|
href: TinyLife.Actions.Action.html
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: TinyLife.Actions.Action
|
|
name: Action
|
|
href: TinyLife.Actions.Action.html
|
|
- name: )
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
commentId: T:System.Collections.Generic.IEnumerable`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
name: IEnumerable<T>
|
|
nameWithType: IEnumerable<T>
|
|
fullName: System.Collections.Generic.IEnumerable<T>
|
|
nameWithType.vb: IEnumerable(Of T)
|
|
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
|
|
name.vb: IEnumerable(Of T)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: System.Collections.Generic
|
|
commentId: N:System.Collections.Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Collections.Generic
|
|
nameWithType: System.Collections.Generic
|
|
fullName: System.Collections.Generic
|
|
spec.csharp:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
spec.vb:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
- uid: TinyLife.Actions.MultiAction.AndThenInitialize
|
|
commentId: M:TinyLife.Actions.MultiAction.AndThenInitialize
|
|
parent: TinyLife.Actions.MultiAction
|
|
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
|
|
name: AndThenInitialize()
|
|
nameWithType: MultiAction.AndThenInitialize()
|
|
fullName: TinyLife.Actions.MultiAction.AndThenInitialize()
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.MultiAction.AndThenInitialize
|
|
name: AndThenInitialize
|
|
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.MultiAction.AndThenInitialize
|
|
name: AndThenInitialize
|
|
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Initialize
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Initialize
|
|
name: Initialize()
|
|
nameWithType: ActionBehavior.Initialize()
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Initialize()
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
|
|
name: Initialize
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Initialize
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
|
|
name: Initialize
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Initialize
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Initialize*
|
|
commentId: Overload:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Initialize
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_Initialize
|
|
name: Initialize
|
|
nameWithType: GetAndSitDownBehavior.Initialize
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Initialize
|
|
- uid: TinyLife.Actions.MultiAction
|
|
commentId: T:TinyLife.Actions.MultiAction
|
|
parent: TinyLife.Actions
|
|
href: TinyLife.Actions.MultiAction.html
|
|
name: MultiAction
|
|
nameWithType: MultiAction
|
|
fullName: TinyLife.Actions.MultiAction
|
|
- uid: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
commentId: M:TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
parent: TinyLife.Actions.MultiAction
|
|
isExternal: true
|
|
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
|
|
name: AndThenUpdate(GameTime, TimeSpan, float)
|
|
nameWithType: MultiAction.AndThenUpdate(GameTime, TimeSpan, float)
|
|
fullName: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
|
|
nameWithType.vb: MultiAction.AndThenUpdate(GameTime, TimeSpan, Single)
|
|
fullName.vb: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
|
|
name.vb: AndThenUpdate(GameTime, TimeSpan, Single)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
name: AndThenUpdate
|
|
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
|
|
- name: (
|
|
- uid: Microsoft.Xna.Framework.GameTime
|
|
name: GameTime
|
|
isExternal: true
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.TimeSpan
|
|
name: TimeSpan
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Single
|
|
name: float
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.single
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
name: AndThenUpdate
|
|
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
|
|
- name: (
|
|
- uid: Microsoft.Xna.Framework.GameTime
|
|
name: GameTime
|
|
isExternal: true
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.TimeSpan
|
|
name: TimeSpan
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Single
|
|
name: Single
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.single
|
|
- name: )
|
|
- uid: TinyLife.GameImpl.Speed
|
|
commentId: P:TinyLife.GameImpl.Speed
|
|
href: TinyLife.GameImpl.html#TinyLife_GameImpl_Speed
|
|
name: Speed
|
|
nameWithType: GameImpl.Speed
|
|
fullName: TinyLife.GameImpl.Speed
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
isExternal: true
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
|
|
name: Update(GameTime, TimeSpan, float)
|
|
nameWithType: ActionBehavior.Update(GameTime, TimeSpan, float)
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
|
|
nameWithType.vb: ActionBehavior.Update(GameTime, TimeSpan, Single)
|
|
fullName.vb: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
|
|
name.vb: Update(GameTime, TimeSpan, Single)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
name: Update
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
|
|
- name: (
|
|
- uid: Microsoft.Xna.Framework.GameTime
|
|
name: GameTime
|
|
isExternal: true
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.TimeSpan
|
|
name: TimeSpan
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Single
|
|
name: float
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.single
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
|
name: Update
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
|
|
- name: (
|
|
- uid: Microsoft.Xna.Framework.GameTime
|
|
name: GameTime
|
|
isExternal: true
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.TimeSpan
|
|
name: TimeSpan
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Single
|
|
name: Single
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.single
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update*
|
|
commentId: Overload:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
|
|
name: Update
|
|
nameWithType: GetAndSitDownBehavior.Update
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.Update
|
|
- uid: Microsoft.Xna.Framework.GameTime
|
|
commentId: T:Microsoft.Xna.Framework.GameTime
|
|
parent: Microsoft.Xna.Framework
|
|
isExternal: true
|
|
name: GameTime
|
|
nameWithType: GameTime
|
|
fullName: Microsoft.Xna.Framework.GameTime
|
|
- uid: System.TimeSpan
|
|
commentId: T:System.TimeSpan
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
|
name: TimeSpan
|
|
nameWithType: TimeSpan
|
|
fullName: System.TimeSpan
|
|
- uid: System.Single
|
|
commentId: T:System.Single
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.single
|
|
name: float
|
|
nameWithType: float
|
|
fullName: float
|
|
nameWithType.vb: Single
|
|
fullName.vb: Single
|
|
name.vb: Single
|
|
- uid: Microsoft.Xna.Framework
|
|
commentId: N:Microsoft.Xna.Framework
|
|
isExternal: true
|
|
name: Microsoft.Xna.Framework
|
|
nameWithType: Microsoft.Xna.Framework
|
|
fullName: Microsoft.Xna.Framework
|
|
spec.csharp:
|
|
- uid: Microsoft
|
|
name: Microsoft
|
|
isExternal: true
|
|
- name: .
|
|
- uid: Microsoft.Xna
|
|
name: Xna
|
|
isExternal: true
|
|
- name: .
|
|
- uid: Microsoft.Xna.Framework
|
|
name: Framework
|
|
isExternal: true
|
|
spec.vb:
|
|
- uid: Microsoft
|
|
name: Microsoft
|
|
isExternal: true
|
|
- name: .
|
|
- uid: Microsoft.Xna
|
|
name: Xna
|
|
isExternal: true
|
|
- name: .
|
|
- uid: Microsoft.Xna.Framework
|
|
name: Framework
|
|
isExternal: true
|
|
- uid: TinyLife.Actions.Action.GetIconObject
|
|
commentId: M:TinyLife.Actions.Action.GetIconObject
|
|
parent: TinyLife.Actions.Action
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetIconObject
|
|
name: GetIconObject()
|
|
nameWithType: Action.GetIconObject()
|
|
fullName: TinyLife.Actions.Action.GetIconObject()
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Action.GetIconObject
|
|
name: GetIconObject
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetIconObject
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Action.GetIconObject
|
|
name: GetIconObject
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetIconObject
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.ActionInfo
|
|
commentId: T:TinyLife.Actions.ActionInfo
|
|
parent: TinyLife.Actions
|
|
href: TinyLife.Actions.ActionInfo.html
|
|
name: ActionInfo
|
|
nameWithType: ActionInfo
|
|
fullName: TinyLife.Actions.ActionInfo
|
|
- uid: TinyLife.Actions.ActionInfo.GetActionObject``1(System.Boolean)
|
|
commentId: M:TinyLife.Actions.ActionInfo.GetActionObject``1(System.Boolean)
|
|
isExternal: true
|
|
href: TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetActionObject__1_System_Boolean_
|
|
name: GetActionObject<T>(bool)
|
|
nameWithType: ActionInfo.GetActionObject<T>(bool)
|
|
fullName: TinyLife.Actions.ActionInfo.GetActionObject<T>(bool)
|
|
nameWithType.vb: ActionInfo.GetActionObject(Of T)(Boolean)
|
|
fullName.vb: TinyLife.Actions.ActionInfo.GetActionObject(Of T)(Boolean)
|
|
name.vb: GetActionObject(Of T)(Boolean)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.ActionInfo.GetActionObject``1(System.Boolean)
|
|
name: GetActionObject
|
|
href: TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetActionObject__1_System_Boolean_
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
- name: (
|
|
- uid: System.Boolean
|
|
name: bool
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.ActionInfo.GetActionObject``1(System.Boolean)
|
|
name: GetActionObject
|
|
href: TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetActionObject__1_System_Boolean_
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- name: (
|
|
- uid: System.Boolean
|
|
name: Boolean
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetIconObject
|
|
name: GetIconObject()
|
|
nameWithType: ActionBehavior.GetIconObject()
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject()
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
|
|
name: GetIconObject
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetIconObject
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
|
|
name: GetIconObject
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetIconObject
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetIconObject*
|
|
commentId: Overload:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetIconObject
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_GetIconObject
|
|
name: GetIconObject
|
|
nameWithType: GetAndSitDownBehavior.GetIconObject
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetIconObject
|
|
- uid: TinyLife.Objects.MapObject
|
|
commentId: T:TinyLife.Objects.MapObject
|
|
parent: TinyLife.Objects
|
|
href: TinyLife.Objects.MapObject.html
|
|
name: MapObject
|
|
nameWithType: MapObject
|
|
fullName: TinyLife.Objects.MapObject
|
|
- uid: TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)
|
|
commentId: M:TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)
|
|
parent: TinyLife.Actions.Action
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetNextAction_TinyLife_Actions_CompletionType_
|
|
name: GetNextAction(CompletionType)
|
|
nameWithType: Action.GetNextAction(CompletionType)
|
|
fullName: TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)
|
|
name: GetNextAction
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetNextAction_TinyLife_Actions_CompletionType_
|
|
- name: (
|
|
- uid: TinyLife.Actions.CompletionType
|
|
name: CompletionType
|
|
href: TinyLife.Actions.CompletionType.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)
|
|
name: GetNextAction
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetNextAction_TinyLife_Actions_CompletionType_
|
|
- name: (
|
|
- uid: TinyLife.Actions.CompletionType
|
|
name: CompletionType
|
|
href: TinyLife.Actions.CompletionType.html
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetNextAction_TinyLife_Actions_CompletionType_
|
|
name: GetNextAction(CompletionType)
|
|
nameWithType: ActionBehavior.GetNextAction(CompletionType)
|
|
fullName: TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
name: GetNextAction
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetNextAction_TinyLife_Actions_CompletionType_
|
|
- name: (
|
|
- uid: TinyLife.Actions.CompletionType
|
|
name: CompletionType
|
|
href: TinyLife.Actions.CompletionType.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
|
name: GetNextAction
|
|
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetNextAction_TinyLife_Actions_CompletionType_
|
|
- name: (
|
|
- uid: TinyLife.Actions.CompletionType
|
|
name: CompletionType
|
|
href: TinyLife.Actions.CompletionType.html
|
|
- name: )
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetNextAction*
|
|
commentId: Overload:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetNextAction
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_GetNextAction_TinyLife_Actions_CompletionType_
|
|
name: GetNextAction
|
|
nameWithType: GetAndSitDownBehavior.GetNextAction
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetNextAction
|
|
- uid: TinyLife.Actions.CompletionType
|
|
commentId: T:TinyLife.Actions.CompletionType
|
|
parent: TinyLife.Actions
|
|
href: TinyLife.Actions.CompletionType.html
|
|
name: CompletionType
|
|
nameWithType: CompletionType
|
|
fullName: TinyLife.Actions.CompletionType
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem*
|
|
commentId: Overload:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_GetInteractingItem__1
|
|
name: GetInteractingItem
|
|
nameWithType: GetAndSitDownBehavior.GetInteractingItem
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItem
|
|
- uid: '{T}'
|
|
commentId: '!:T'
|
|
definition: T
|
|
name: T
|
|
nameWithType: T
|
|
fullName: T
|
|
- uid: T
|
|
name: T
|
|
nameWithType: T
|
|
fullName: T
|
|
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction*
|
|
commentId: Overload:TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction
|
|
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html#TinyLife_Actions_Behaviors_GetAndSitDownBehavior_GetInteractingItemForAction__1_TinyLife_Actions_ActionInfo_TinyLife_Objects_FurnitureType___
|
|
name: GetInteractingItemForAction
|
|
nameWithType: GetAndSitDownBehavior.GetInteractingItemForAction
|
|
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.GetInteractingItemForAction
|