This commit is contained in:
Ell 2024-07-13 14:54:00 +02:00
parent 03a30fb485
commit 48da4c83f1
79 changed files with 3468 additions and 1142 deletions

View file

@ -1,3 +1,24 @@
# 0.43.2
*July 13, 2024*
Additions
- Added an autonomous Check on Baby action that'll help with autonomous baby care in homes with multiple floors especially
- Added [non-buyable](https://docs.tinylifegame.com/articles/cheats.html) debug openings that are just the cutouts other openings use without a texture of their own, which may be useful for custom maps
Improvements
- Improved the way household previews are created and stored. This means that all saves will have to have their previews regenerated by loading them, selecting a household, and saving the game.
- Center the camera on the last relevant lot when entering the household selection screen
- Display infinite tiny bucks in build-only mode, instead of no money at all
- Made the tech withdrawal emotion modifier give bored rather than sad
Fixes
- Fixed the baby cleanup action not displaying proper visuals based on person ordering
- Fixed an exception when adding furniture from other maps to storage
- Fixed empty lots causing a crash when calculating their size
- Fixed a crash when a person holding something just aged up
- Fixed the outdoorsy emotion modifiers displaying when out of town
- Fixed pregnant bellies being able to display out of bounds when changing lifespan settings during pregnancy
# 0.43.1 # 0.43.1
*July 9, 2024* *July 9, 2024*

View file

@ -191,6 +191,7 @@
"TinyLife.Actions.ActionType.ChatOnPhone": "TinyLife.Actions.ActionType.yml", "TinyLife.Actions.ActionType.ChatOnPhone": "TinyLife.Actions.ActionType.yml",
"TinyLife.Actions.ActionType.ChatOnPhoneWith": "TinyLife.Actions.ActionType.yml", "TinyLife.Actions.ActionType.ChatOnPhoneWith": "TinyLife.Actions.ActionType.yml",
"TinyLife.Actions.ActionType.ChatWith": "TinyLife.Actions.ActionType.yml", "TinyLife.Actions.ActionType.ChatWith": "TinyLife.Actions.ActionType.yml",
"TinyLife.Actions.ActionType.CheckOnBaby": "TinyLife.Actions.ActionType.yml",
"TinyLife.Actions.ActionType.CheerUp": "TinyLife.Actions.ActionType.yml", "TinyLife.Actions.ActionType.CheerUp": "TinyLife.Actions.ActionType.yml",
"TinyLife.Actions.ActionType.Clean": "TinyLife.Actions.ActionType.yml", "TinyLife.Actions.ActionType.Clean": "TinyLife.Actions.ActionType.yml",
"TinyLife.Actions.ActionType.CleanDish": "TinyLife.Actions.ActionType.yml", "TinyLife.Actions.ActionType.CleanDish": "TinyLife.Actions.ActionType.yml",
@ -799,6 +800,8 @@
"TinyLife.Actions.MultiAction.IsCompleted": "TinyLife.Actions.MultiAction.yml", "TinyLife.Actions.MultiAction.IsCompleted": "TinyLife.Actions.MultiAction.yml",
"TinyLife.Actions.MultiAction.MainElapsedTime": "TinyLife.Actions.MultiAction.yml", "TinyLife.Actions.MultiAction.MainElapsedTime": "TinyLife.Actions.MultiAction.yml",
"TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.MultiAction.yml", "TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.MultiAction.yml",
"TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.MultiAction.yml",
"TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.MultiAction.yml",
"TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.MultiAction.yml", "TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.MultiAction.yml",
"TinyLife.Actions.MultiAction.PreInitialize": "TinyLife.Actions.MultiAction.yml", "TinyLife.Actions.MultiAction.PreInitialize": "TinyLife.Actions.MultiAction.yml",
"TinyLife.Actions.MultiAction.Stage": "TinyLife.Actions.MultiAction.Stage.yml", "TinyLife.Actions.MultiAction.Stage": "TinyLife.Actions.MultiAction.Stage.yml",
@ -898,6 +901,7 @@
"TinyLife.Actions.SocialAction.AndThenIsCompleted": "TinyLife.Actions.SocialAction.yml", "TinyLife.Actions.SocialAction.AndThenIsCompleted": "TinyLife.Actions.SocialAction.yml",
"TinyLife.Actions.SocialAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.SocialAction.yml", "TinyLife.Actions.SocialAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.SocialAction.yml",
"TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.SocialAction.yml", "TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.SocialAction.yml",
"TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.SocialAction.yml",
"TinyLife.Actions.SocialAction.CanCancel(TinyLife.Actions.Action)": "TinyLife.Actions.SocialAction.yml", "TinyLife.Actions.SocialAction.CanCancel(TinyLife.Actions.Action)": "TinyLife.Actions.SocialAction.yml",
"TinyLife.Actions.SocialAction.CanMultitask(TinyLife.Actions.Action)": "TinyLife.Actions.SocialAction.yml", "TinyLife.Actions.SocialAction.CanMultitask(TinyLife.Actions.Action)": "TinyLife.Actions.SocialAction.yml",
"TinyLife.Actions.SocialAction.CanStartNow": "TinyLife.Actions.SocialAction.yml", "TinyLife.Actions.SocialAction.CanStartNow": "TinyLife.Actions.SocialAction.yml",
@ -2624,7 +2628,7 @@
"TinyLife.Objects.Person.DiaperDirty": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.DiaperDirty": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.DrawLooksLayer(Microsoft.Xna.Framework.Graphics.SpriteBatch,MLEM.Animations.SpriteAnimation,MLEM.Textures.TextureRegion,TinyLife.Objects.WornClothes,System.Int32,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,Microsoft.Xna.Framework.Color,System.Single,System.Single)": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.DrawLooksLayer(Microsoft.Xna.Framework.Graphics.SpriteBatch,MLEM.Animations.SpriteAnimation,MLEM.Textures.TextureRegion,TinyLife.Objects.WornClothes,System.Int32,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,Microsoft.Xna.Framework.Color,System.Single,System.Single)": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.DrawSize": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.DrawSize": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan})": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.FullNamePronouns": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.FullNamePronouns": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point)": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point)": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.GetAiPriorityForObject(TinyLife.Objects.MapObject,TinyLife.Objects.ObjectCategory)": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.GetAiPriorityForObject(TinyLife.Objects.MapObject,TinyLife.Objects.ObjectCategory)": "TinyLife.Objects.Person.yml",
@ -2659,7 +2663,7 @@
"TinyLife.Objects.Person.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.Person.Validate": "TinyLife.Objects.Person.yml", "TinyLife.Objects.Person.Validate": "TinyLife.Objects.Person.yml",
"TinyLife.Objects.PersonAi": "TinyLife.Objects.PersonAi.yml", "TinyLife.Objects.PersonAi": "TinyLife.Objects.PersonAi.yml",
"TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean)": "TinyLife.Objects.PersonAi.yml", "TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean,System.Boolean,TinyLife.Actions.ActionArgument[])": "TinyLife.Objects.PersonAi.yml",
"TinyLife.Objects.PersonLike": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single)": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single)": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.ActionQueue": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.ActionQueue": "TinyLife.Objects.PersonLike.yml",
@ -2698,7 +2702,7 @@
"TinyLife.Objects.PersonLike.DrawLooks(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,System.Nullable{Microsoft.Xna.Framework.Color},System.Single)": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.DrawLooks(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,System.Nullable{Microsoft.Xna.Framework.Color},System.Single)": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.DrawLooksLayer(Microsoft.Xna.Framework.Graphics.SpriteBatch,MLEM.Animations.SpriteAnimation,MLEM.Textures.TextureRegion,TinyLife.Objects.WornClothes,System.Int32,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,Microsoft.Xna.Framework.Color,System.Single,System.Single)": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.DrawLooksLayer(Microsoft.Xna.Framework.Graphics.SpriteBatch,MLEM.Animations.SpriteAnimation,MLEM.Textures.TextureRegion,TinyLife.Objects.WornClothes,System.Int32,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,Microsoft.Xna.Framework.Color,System.Single,System.Single)": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.DrawSize": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.DrawSize": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan})": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.EarnMoney(System.Single,System.Object)": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.EarnMoney(System.Single,System.Object)": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.EfficiencyModifierDelegate": "TinyLife.Objects.PersonLike.EfficiencyModifierDelegate.yml", "TinyLife.Objects.PersonLike.EfficiencyModifierDelegate": "TinyLife.Objects.PersonLike.EfficiencyModifierDelegate.yml",
"TinyLife.Objects.PersonLike.Emotion": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.Emotion": "TinyLife.Objects.PersonLike.yml",
@ -2857,7 +2861,6 @@
"TinyLife.Objects.PersonLike.UpdateAction(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Collections.Generic.IEnumerable{TinyLife.Goals.IGoalTriggerable})": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.UpdateAction(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Collections.Generic.IEnumerable{TinyLife.Goals.IGoalTriggerable})": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.UpdateAnimations(System.TimeSpan,System.Single)": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.UpdateAnimations(System.TimeSpan,System.Single)": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.Validate": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.Validate": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.ValidateClothes": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.VisitLot(TinyLife.World.Lot)": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.VisitLot(TinyLife.World.Lot)": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.VisitingLot": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.VisitingLot": "TinyLife.Objects.PersonLike.yml",
"TinyLife.Objects.PersonLike.VisualPosition": "TinyLife.Objects.PersonLike.yml", "TinyLife.Objects.PersonLike.VisualPosition": "TinyLife.Objects.PersonLike.yml",
@ -3117,6 +3120,7 @@
"TinyLife.PerSaveOptions.Instance": "TinyLife.PerSaveOptions.yml", "TinyLife.PerSaveOptions.Instance": "TinyLife.PerSaveOptions.yml",
"TinyLife.PerSaveOptions.LastGameVersion": "TinyLife.PerSaveOptions.yml", "TinyLife.PerSaveOptions.LastGameVersion": "TinyLife.PerSaveOptions.yml",
"TinyLife.PerSaveOptions.LastMap": "TinyLife.PerSaveOptions.yml", "TinyLife.PerSaveOptions.LastMap": "TinyLife.PerSaveOptions.yml",
"TinyLife.PerSaveOptions.LastPlayedLot": "TinyLife.PerSaveOptions.yml",
"TinyLife.PerSaveOptions.Load(System.String,System.Boolean)": "TinyLife.PerSaveOptions.yml", "TinyLife.PerSaveOptions.Load(System.String,System.Boolean)": "TinyLife.PerSaveOptions.yml",
"TinyLife.PerSaveOptions.LoadedMods": "TinyLife.PerSaveOptions.yml", "TinyLife.PerSaveOptions.LoadedMods": "TinyLife.PerSaveOptions.yml",
"TinyLife.PerSaveOptions.MapCustom": "TinyLife.PerSaveOptions.yml", "TinyLife.PerSaveOptions.MapCustom": "TinyLife.PerSaveOptions.yml",
@ -3736,8 +3740,8 @@
"TinyLife.Uis.MapSelectUi.GetHoveredLot": "TinyLife.Uis.MapSelectUi.yml", "TinyLife.Uis.MapSelectUi.GetHoveredLot": "TinyLife.Uis.MapSelectUi.yml",
"TinyLife.Uis.MapSelectUi.OpenSplitMenu(TinyLife.World.Household,TinyLife.World.Lot,System.Action{TinyLife.Uis.CoveringGroup})": "TinyLife.Uis.MapSelectUi.yml", "TinyLife.Uis.MapSelectUi.OpenSplitMenu(TinyLife.World.Household,TinyLife.World.Lot,System.Action{TinyLife.Uis.CoveringGroup})": "TinyLife.Uis.MapSelectUi.yml",
"TinyLife.Uis.Menus": "TinyLife.Uis.Menus.yml", "TinyLife.Uis.Menus": "TinyLife.Uis.Menus.yml",
"TinyLife.Uis.Menus.CreateHouseholdPreview(System.String,TinyLife.Objects.LifeSpan,System.Boolean)": "TinyLife.Uis.Menus.yml", "TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})": "TinyLife.Uis.Menus.yml",
"TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean)": "TinyLife.Uis.Menus.yml", "TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})": "TinyLife.Uis.Menus.yml",
"TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor,System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons},Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Func{System.Boolean})": "TinyLife.Uis.Menus.yml", "TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor,System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons},Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Func{System.Boolean})": "TinyLife.Uis.Menus.yml",
"TinyLife.Uis.Menus.MenuBackground(System.Single,System.Single,System.Single,System.Single)": "TinyLife.Uis.Menus.yml", "TinyLife.Uis.Menus.MenuBackground(System.Single,System.Single,System.Single,System.Single)": "TinyLife.Uis.Menus.yml",
"TinyLife.Uis.Menus.Transition(System.Action,System.Action,TinyLife.Uis.Menus.TransitionType,TinyLife.Uis.Menus.TransitionType,System.Single,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})": "TinyLife.Uis.Menus.yml", "TinyLife.Uis.Menus.Transition(System.Action,System.Action,TinyLife.Uis.Menus.TransitionType,TinyLife.Uis.Menus.TransitionType,System.Single,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})": "TinyLife.Uis.Menus.yml",
@ -3949,6 +3953,7 @@
"TinyLife.World.Household": "TinyLife.World.Household.yml", "TinyLife.World.Household": "TinyLife.World.Household.yml",
"TinyLife.World.Household.#ctor(TinyLife.World.Map,TinyLife.World.Lot,System.Boolean)": "TinyLife.World.Household.yml", "TinyLife.World.Household.#ctor(TinyLife.World.Map,TinyLife.World.Lot,System.Boolean)": "TinyLife.World.Household.yml",
"TinyLife.World.Household.Add(TinyLife.Objects.PersonLike)": "TinyLife.World.Household.yml", "TinyLife.World.Household.Add(TinyLife.Objects.PersonLike)": "TinyLife.World.Household.yml",
"TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)": "TinyLife.World.Household.yml",
"TinyLife.World.Household.AddedThroughPopulating": "TinyLife.World.Household.yml", "TinyLife.World.Household.AddedThroughPopulating": "TinyLife.World.Household.yml",
"TinyLife.World.Household.AreUtilitiesDisabled(System.Nullable{System.TimeSpan})": "TinyLife.World.Household.yml", "TinyLife.World.Household.AreUtilitiesDisabled(System.Nullable{System.TimeSpan})": "TinyLife.World.Household.yml",
"TinyLife.World.Household.ClothesStorage": "TinyLife.World.Household.yml", "TinyLife.World.Household.ClothesStorage": "TinyLife.World.Household.yml",
@ -4244,6 +4249,7 @@
"TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)": "TinyLife.World.OpeningType.yml", "TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)": "TinyLife.World.OpeningType.yml",
"TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme[],System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)": "TinyLife.World.OpeningType.yml", "TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme[],System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)": "TinyLife.World.OpeningType.yml",
"TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorSettings,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)": "TinyLife.World.OpeningType.yml", "TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorSettings,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)": "TinyLife.World.OpeningType.yml",
"TinyLife.World.OpeningType.CanBuy": "TinyLife.World.OpeningType.yml",
"TinyLife.World.OpeningType.Colors": "TinyLife.World.OpeningType.yml", "TinyLife.World.OpeningType.Colors": "TinyLife.World.OpeningType.yml",
"TinyLife.World.OpeningType.Construct(System.Int32[],TinyLife.Objects.WallLike)": "TinyLife.World.OpeningType.yml", "TinyLife.World.OpeningType.Construct(System.Int32[],TinyLife.Objects.WallLike)": "TinyLife.World.OpeningType.yml",
"TinyLife.World.OpeningType.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Int32[],System.Nullable{Microsoft.Xna.Framework.Color},System.Single,Microsoft.Xna.Framework.Point)": "TinyLife.World.OpeningType.yml", "TinyLife.World.OpeningType.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Int32[],System.Nullable{Microsoft.Xna.Framework.Color},System.Single,Microsoft.Xna.Framework.Point)": "TinyLife.World.OpeningType.yml",
@ -4403,7 +4409,7 @@
"TinyLife.World.Wall.Validate(TinyLife.World.Map)": "TinyLife.World.Wall.yml", "TinyLife.World.Wall.Validate(TinyLife.World.Map)": "TinyLife.World.Wall.yml",
"TinyLife.World.Wall.Wallpapers": "TinyLife.World.Wall.yml", "TinyLife.World.Wall.Wallpapers": "TinyLife.World.Wall.yml",
"TinyLife.World.WallMode": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.#ctor(System.String,MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.Door": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.Door": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.Full": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.Full": "TinyLife.World.WallMode.yml",
@ -4412,6 +4418,7 @@
"TinyLife.World.WallMode.MaskPosition": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.MaskPosition": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.MaskTexture": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.MaskTexture": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.Modes": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.Modes": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.Name": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.NarrowLong": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.NarrowLong": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.NarrowWideTop": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.NarrowWideTop": "TinyLife.World.WallMode.yml",
"TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)": "TinyLife.World.WallMode.yml", "TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)": "TinyLife.World.WallMode.yml",

View file

@ -73,6 +73,7 @@ items:
- TinyLife.Actions.ActionType.ChatOnPhone - TinyLife.Actions.ActionType.ChatOnPhone
- TinyLife.Actions.ActionType.ChatOnPhoneWith - TinyLife.Actions.ActionType.ChatOnPhoneWith
- TinyLife.Actions.ActionType.ChatWith - TinyLife.Actions.ActionType.ChatWith
- TinyLife.Actions.ActionType.CheckOnBaby
- TinyLife.Actions.ActionType.CheerUp - TinyLife.Actions.ActionType.CheerUp
- TinyLife.Actions.ActionType.Clean - TinyLife.Actions.ActionType.Clean
- TinyLife.Actions.ActionType.CleanDish - TinyLife.Actions.ActionType.CleanDish
@ -7604,7 +7605,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ConfideIn id: ConfideIn
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 18 startLine: 19
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7631,7 +7632,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ComplainAboutLife id: ComplainAboutLife
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 27 startLine: 28
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7658,7 +7659,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutFeelings id: TalkAboutFeelings
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 32 startLine: 33
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7685,7 +7686,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ShareIdeas id: ShareIdeas
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 37 startLine: 38
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7712,7 +7713,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GaugeRelationship id: GaugeRelationship
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 42 startLine: 43
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7739,7 +7740,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskToLeave id: AskToLeave
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 64 startLine: 65
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7766,7 +7767,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CallOver id: CallOver
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 73 startLine: 74
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7793,7 +7794,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ThisIsInappropriate id: ThisIsInappropriate
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 79 startLine: 80
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7820,7 +7821,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WakeUp id: WakeUp
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 91 startLine: 92
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7847,7 +7848,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutPersonality id: AskAboutPersonality
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 94 startLine: 95
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7874,7 +7875,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutJob id: AskAboutJob
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 110 startLine: 111
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7901,7 +7902,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskToTaste id: AskToTaste
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 130 startLine: 131
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7928,7 +7929,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OrderCoffee id: OrderCoffee
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 142 startLine: 143
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7955,7 +7956,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OrderTea id: OrderTea
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 152 startLine: 153
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7982,7 +7983,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OrderCafeFood id: OrderCafeFood
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 163 startLine: 164
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8009,7 +8010,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutNonfictionBooks id: AskAboutNonfictionBooks
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 172 startLine: 173
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8036,7 +8037,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutFictionBooks id: AskAboutFictionBooks
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 184 startLine: 185
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8063,7 +8064,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PickUpPerson id: PickUpPerson
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 196 startLine: 197
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8090,7 +8091,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PutDownPerson id: PutDownPerson
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 206 startLine: 207
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8117,7 +8118,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HomeworkHelp id: HomeworkHelp
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 216 startLine: 217
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8144,7 +8145,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskToCook id: AskToCook
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 227 startLine: 228
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8171,7 +8172,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InviteIn id: InviteIn
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 245 startLine: 246
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8198,7 +8199,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AdoptAsParent id: AdoptAsParent
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 260 startLine: 261
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8225,7 +8226,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskBabysitterCredentials id: AskBabysitterCredentials
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 278 startLine: 279
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8252,7 +8253,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskBabysitterBrewConsumption id: AskBabysitterBrewConsumption
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 286 startLine: 287
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8279,7 +8280,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskBabysitterBabiesSat id: AskBabysitterBabiesSat
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 294 startLine: 295
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8306,7 +8307,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BribeForFriendship id: BribeForFriendship
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 304 startLine: 305
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8333,7 +8334,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InspectBaby id: InspectBaby
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 316 startLine: 317
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8360,7 +8361,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AnnouncePregnancy id: AnnouncePregnancy
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 321 startLine: 322
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8387,7 +8388,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OrderDrinks id: OrderDrinks
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 327 startLine: 328
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8414,7 +8415,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Babble id: Babble
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 336 startLine: 337
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8441,7 +8442,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CryAt id: CryAt
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 342 startLine: 343
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8468,7 +8469,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskWhy id: AskWhy
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 348 startLine: 349
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8495,7 +8496,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskHow id: AskHow
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 353 startLine: 354
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8522,7 +8523,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutPlaying id: TalkAboutPlaying
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 358 startLine: 359
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8549,7 +8550,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: YoureSoTall id: YoureSoTall
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 363 startLine: 364
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8576,7 +8577,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HelpBabyBook id: HelpBabyBook
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 368 startLine: 369
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8603,7 +8604,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HelpPotty id: HelpPotty
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 385 startLine: 386
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8630,7 +8631,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChangeDiaper id: ChangeDiaper
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 392 startLine: 393
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8657,7 +8658,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CleanUpBaby id: CleanUpBaby
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 404 startLine: 405
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8684,7 +8685,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BatheBaby id: BatheBaby
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 415 startLine: 416
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8711,7 +8712,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PutInCrib id: PutInCrib
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 425 startLine: 426
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8738,7 +8739,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskToTakeOutOfCrib id: AskToTakeOutOfCrib
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 432 startLine: 433
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8765,7 +8766,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskFood id: AskFood
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 446 startLine: 447
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8774,6 +8775,33 @@ items:
return: return:
type: TinyLife.Actions.ActionType type: TinyLife.Actions.ActionType
content.vb: Public Shared ReadOnly AskFood As ActionType content.vb: Public Shared ReadOnly AskFood As ActionType
- uid: TinyLife.Actions.ActionType.CheckOnBaby
commentId: F:TinyLife.Actions.ActionType.CheckOnBaby
id: CheckOnBaby
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: CheckOnBaby
nameWithType: ActionType.CheckOnBaby
fullName: TinyLife.Actions.ActionType.CheckOnBaby
type: Field
source:
remote:
path: TinyLife/Actions/ActionType.Social.Misc.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CheckOnBaby
path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 461
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: public static readonly ActionType CheckOnBaby
return:
type: TinyLife.Actions.ActionType
content.vb: Public Shared ReadOnly CheckOnBaby As ActionType
- uid: TinyLife.Actions.ActionType.AskForArtAdvice - uid: TinyLife.Actions.ActionType.AskForArtAdvice
commentId: F:TinyLife.Actions.ActionType.AskForArtAdvice commentId: F:TinyLife.Actions.ActionType.AskForArtAdvice
id: AskForArtAdvice id: AskForArtAdvice
@ -8792,7 +8820,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskForArtAdvice id: AskForArtAdvice
path: ../TinyLife/Actions/ActionType.Social.Misc.cs path: ../TinyLife/Actions/ActionType.Social.Misc.cs
startLine: 465 startLine: 494
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions

View file

@ -62,6 +62,8 @@ items:
- TinyLife.Actions.MultiAction.InProgressTime - TinyLife.Actions.MultiAction.InProgressTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.AndThenIsCompleted - TinyLife.Actions.MultiAction.AndThenIsCompleted
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -606,6 +608,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -60,6 +60,8 @@ items:
- TinyLife.Actions.MultiAction.InProgressTime - TinyLife.Actions.MultiAction.InProgressTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.AndThenIsCompleted - TinyLife.Actions.MultiAction.AndThenIsCompleted
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -729,6 +731,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -50,6 +50,8 @@ items:
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.AndThenInitialize - TinyLife.Actions.MultiAction.AndThenInitialize
- TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
@ -454,6 +456,112 @@ references:
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single href: https://learn.microsoft.com/dotnet/api/system.single
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -53,6 +53,8 @@ items:
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.AndThenInitialize - TinyLife.Actions.MultiAction.AndThenInitialize
- TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -589,6 +591,112 @@ references:
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single href: https://learn.microsoft.com/dotnet/api/system.single
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -61,6 +61,7 @@ items:
- TinyLife.Actions.SocialAction.MainAction - TinyLife.Actions.SocialAction.MainAction
- TinyLife.Actions.SocialAction.ConversationTime - TinyLife.Actions.SocialAction.ConversationTime
- TinyLife.Actions.SocialAction.InProgressTime - TinyLife.Actions.SocialAction.InProgressTime
- TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.SocialAction.IsConversationCompleted - TinyLife.Actions.SocialAction.IsConversationCompleted
- TinyLife.Actions.SocialAction.GetMaxWaitTime - TinyLife.Actions.SocialAction.GetMaxWaitTime
- TinyLife.Actions.SocialAction.EnqueuePartnerAction(TinyLife.Actions.ActionInfo) - TinyLife.Actions.SocialAction.EnqueuePartnerAction(TinyLife.Actions.ActionInfo)
@ -82,6 +83,8 @@ items:
- TinyLife.Actions.MultiAction.MainElapsedTime - TinyLife.Actions.MultiAction.MainElapsedTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -1062,6 +1065,59 @@ references:
name: InProgressTime name: InProgressTime
nameWithType: SocialAction.InProgressTime nameWithType: SocialAction.InProgressTime
fullName: TinyLife.Actions.SocialAction.InProgressTime fullName: TinyLife.Actions.SocialAction.InProgressTime
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.SocialAction
isExternal: true
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: AndThenUpdateBoth(GameTime, TimeSpan, float)
nameWithType: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: AndThenUpdateBoth(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_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.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_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.SocialAction.IsConversationCompleted - uid: TinyLife.Actions.SocialAction.IsConversationCompleted
commentId: M:TinyLife.Actions.SocialAction.IsConversationCompleted commentId: M:TinyLife.Actions.SocialAction.IsConversationCompleted
parent: TinyLife.Actions.SocialAction parent: TinyLife.Actions.SocialAction
@ -1671,6 +1727,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -52,6 +52,7 @@ items:
- TinyLife.Actions.SocialAction.InProgressTime - TinyLife.Actions.SocialAction.InProgressTime
- TinyLife.Actions.SocialAction.InitializeConversation - TinyLife.Actions.SocialAction.InitializeConversation
- TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.SocialAction.IsConversationCompleted - TinyLife.Actions.SocialAction.IsConversationCompleted
- TinyLife.Actions.SocialAction.GetMaxWaitTime - TinyLife.Actions.SocialAction.GetMaxWaitTime
- TinyLife.Actions.SocialAction.EnqueuePartnerAction(TinyLife.Actions.ActionInfo) - TinyLife.Actions.SocialAction.EnqueuePartnerAction(TinyLife.Actions.ActionInfo)
@ -72,6 +73,8 @@ items:
- TinyLife.Actions.MultiAction.Handler - TinyLife.Actions.MultiAction.Handler
- TinyLife.Actions.MultiAction.MainElapsedTime - TinyLife.Actions.MultiAction.MainElapsedTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -600,6 +603,59 @@ references:
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single href: https://learn.microsoft.com/dotnet/api/system.single
- name: ) - name: )
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.SocialAction
isExternal: true
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: AndThenUpdateBoth(GameTime, TimeSpan, float)
nameWithType: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: AndThenUpdateBoth(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_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.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_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.SocialAction.IsConversationCompleted - uid: TinyLife.Actions.SocialAction.IsConversationCompleted
commentId: M:TinyLife.Actions.SocialAction.IsConversationCompleted commentId: M:TinyLife.Actions.SocialAction.IsConversationCompleted
parent: TinyLife.Actions.SocialAction parent: TinyLife.Actions.SocialAction
@ -1190,6 +1246,112 @@ references:
name: CurrentStage name: CurrentStage
nameWithType: MultiAction.CurrentStage nameWithType: MultiAction.CurrentStage
fullName: TinyLife.Actions.MultiAction.CurrentStage fullName: TinyLife.Actions.MultiAction.CurrentStage
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -23,7 +23,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Stage id: Stage
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 202 startLine: 210
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -52,7 +52,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: First id: First
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 207 startLine: 215
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -80,7 +80,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Main id: Main
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 211 startLine: 219
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -108,7 +108,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Last id: Last
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 215 startLine: 223
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -136,7 +136,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Done id: Done
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 219 startLine: 227
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions

View file

@ -22,6 +22,8 @@ items:
- TinyLife.Actions.MultiAction.IsCompleted - TinyLife.Actions.MultiAction.IsCompleted
- TinyLife.Actions.MultiAction.MainElapsedTime - TinyLife.Actions.MultiAction.MainElapsedTime
- TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -556,6 +558,78 @@ items:
nameWithType.vb: MultiAction.AndThenUpdate(GameTime, TimeSpan, Single) nameWithType.vb: MultiAction.AndThenUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single) fullName.vb: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: AndThenUpdate(GameTime, TimeSpan, Single) name.vb: AndThenUpdate(GameTime, TimeSpan, Single)
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id: OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
langs:
- csharp
- vb
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
type: Method
source:
remote:
path: TinyLife/Actions/MultiAction.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnFirstUpdate
path: ../TinyLife/Actions/MultiAction.cs
startLine: 91
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: protected virtual void OnFirstUpdate(GameTime time, TimeSpan passedInGame, float speedMultiplier)
parameters:
- id: time
type: Microsoft.Xna.Framework.GameTime
- id: passedInGame
type: System.TimeSpan
- id: speedMultiplier
type: System.Single
content.vb: Protected Overridable Sub OnFirstUpdate(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
overload: TinyLife.Actions.MultiAction.OnFirstUpdate*
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id: OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
langs:
- csharp
- vb
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
type: Method
source:
remote:
path: TinyLife/Actions/MultiAction.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnLastUpdate
path: ../TinyLife/Actions/MultiAction.cs
startLine: 93
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: protected virtual void OnLastUpdate(GameTime time, TimeSpan passedInGame, float speedMultiplier)
parameters:
- id: time
type: Microsoft.Xna.Framework.GameTime
- id: passedInGame
type: System.TimeSpan
- id: speedMultiplier
type: System.Single
content.vb: Protected Overridable Sub OnLastUpdate(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
overload: TinyLife.Actions.MultiAction.OnLastUpdate*
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
- uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
id: AndThenOnCompleted(TinyLife.Actions.CompletionType) id: AndThenOnCompleted(TinyLife.Actions.CompletionType)
@ -574,7 +648,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AndThenOnCompleted id: AndThenOnCompleted
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 96 startLine: 100
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -609,7 +683,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PreInitialize id: PreInitialize
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 102 startLine: 106
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -640,7 +714,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PreCompleted id: PreCompleted
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 108 startLine: 112
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -672,7 +746,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Update id: Update
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 111 startLine: 115
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -717,7 +791,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Initialize id: Initialize
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 139 startLine: 147
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -749,7 +823,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsCompleted id: IsCompleted
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 149 startLine: 157
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -786,7 +860,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnCompleted id: OnCompleted
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 169 startLine: 177
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -824,7 +898,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate id: Validate
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 184 startLine: 192
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -865,7 +939,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanCancel id: CanCancel
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 189 startLine: 197
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -906,7 +980,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanStartNow id: CanStartNow
path: ../TinyLife/Actions/MultiAction.cs path: ../TinyLife/Actions/MultiAction.cs
startLine: 195 startLine: 203
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -4808,6 +4882,18 @@ references:
- uid: Microsoft.Xna.Framework - uid: Microsoft.Xna.Framework
name: Framework name: Framework
isExternal: true isExternal: true
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate*
commentId: Overload:TinyLife.Actions.MultiAction.OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate
nameWithType: MultiAction.OnFirstUpdate
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate
- uid: TinyLife.Actions.MultiAction.OnLastUpdate*
commentId: Overload:TinyLife.Actions.MultiAction.OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate
nameWithType: MultiAction.OnLastUpdate
fullName: TinyLife.Actions.MultiAction.OnLastUpdate
- uid: TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType) - uid: TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.MultiAction.OnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -58,6 +58,7 @@ items:
- TinyLife.Actions.SocialAction.ConversationTime - TinyLife.Actions.SocialAction.ConversationTime
- TinyLife.Actions.SocialAction.InProgressTime - TinyLife.Actions.SocialAction.InProgressTime
- TinyLife.Actions.SocialAction.InitializeConversation - TinyLife.Actions.SocialAction.InitializeConversation
- TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.SocialAction.GetMaxWaitTime - TinyLife.Actions.SocialAction.GetMaxWaitTime
- TinyLife.Actions.SocialAction.EnqueuePartnerAction(TinyLife.Actions.ActionInfo) - TinyLife.Actions.SocialAction.EnqueuePartnerAction(TinyLife.Actions.ActionInfo)
- TinyLife.Actions.SocialAction.GetPartnerArguments(TinyLife.Actions.ActionInfo) - TinyLife.Actions.SocialAction.GetPartnerArguments(TinyLife.Actions.ActionInfo)
@ -79,6 +80,8 @@ items:
- TinyLife.Actions.MultiAction.MainElapsedTime - TinyLife.Actions.MultiAction.MainElapsedTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -705,6 +708,59 @@ references:
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_InitializeConversation href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_InitializeConversation
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.SocialAction
isExternal: true
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: AndThenUpdateBoth(GameTime, TimeSpan, float)
nameWithType: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: AndThenUpdateBoth(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_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.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_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.SocialAction.GetMaxWaitTime - uid: TinyLife.Actions.SocialAction.GetMaxWaitTime
commentId: M:TinyLife.Actions.SocialAction.GetMaxWaitTime commentId: M:TinyLife.Actions.SocialAction.GetMaxWaitTime
parent: TinyLife.Actions.SocialAction parent: TinyLife.Actions.SocialAction
@ -1320,6 +1376,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -56,6 +56,8 @@ items:
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.AndThenIsCompleted - TinyLife.Actions.MultiAction.AndThenIsCompleted
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
@ -635,6 +637,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -49,6 +49,8 @@ items:
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
@ -441,6 +443,112 @@ references:
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single href: https://learn.microsoft.com/dotnet/api/system.single
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -50,6 +50,8 @@ items:
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
@ -493,6 +495,112 @@ references:
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single href: https://learn.microsoft.com/dotnet/api/system.single
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -56,6 +56,8 @@ items:
- TinyLife.Actions.MultiAction.MainElapsedTime - TinyLife.Actions.MultiAction.MainElapsedTime
- TinyLife.Actions.MultiAction.InProgressTime - TinyLife.Actions.MultiAction.InProgressTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -670,6 +672,112 @@ references:
name: CurrentStage name: CurrentStage
nameWithType: MultiAction.CurrentStage nameWithType: MultiAction.CurrentStage
fullName: TinyLife.Actions.MultiAction.CurrentStage fullName: TinyLife.Actions.MultiAction.CurrentStage
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -52,6 +52,8 @@ items:
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.AndThenInitialize - TinyLife.Actions.MultiAction.AndThenInitialize
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
@ -478,6 +480,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - uid: TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.MultiAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -22,7 +22,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StartPartnerAction id: StartPartnerAction
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 305 startLine: 320
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -139,7 +139,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 308 startLine: 323
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -174,7 +174,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Initialize id: Initialize
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 311 startLine: 326
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -206,7 +206,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsCompleted id: IsCompleted
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 339 startLine: 354
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions

View file

@ -11,6 +11,7 @@ items:
- TinyLife.Actions.SocialAction.AndThenIsCompleted - TinyLife.Actions.SocialAction.AndThenIsCompleted
- TinyLife.Actions.SocialAction.AndThenOnCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.SocialAction.AndThenOnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.SocialAction.CanCancel(TinyLife.Actions.Action) - TinyLife.Actions.SocialAction.CanCancel(TinyLife.Actions.Action)
- TinyLife.Actions.SocialAction.CanMultitask(TinyLife.Actions.Action) - TinyLife.Actions.SocialAction.CanMultitask(TinyLife.Actions.Action)
- TinyLife.Actions.SocialAction.CanStartNow - TinyLife.Actions.SocialAction.CanStartNow
@ -49,7 +50,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SocialAction id: SocialAction
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 17 startLine: 18
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -80,6 +81,8 @@ items:
- TinyLife.Actions.MultiAction.MainElapsedTime - TinyLife.Actions.MultiAction.MainElapsedTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -170,7 +173,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsMain id: IsMain
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 23 startLine: 24
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -214,7 +217,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Partner id: Partner
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 28 startLine: 29
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -245,7 +248,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PartnerAction id: PartnerAction
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 32 startLine: 33
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -276,7 +279,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MainAction id: MainAction
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 36 startLine: 37
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -307,7 +310,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ConversationTime id: ConversationTime
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 41 startLine: 42
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -351,7 +354,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InProgressTime id: InProgressTime
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 45 startLine: 46
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -389,7 +392,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 51 startLine: 52
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -424,7 +427,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 54 startLine: 55
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -462,7 +465,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CreateFirstActions id: CreateFirstActions
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 57 startLine: 58
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -501,7 +504,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InitializeConversation id: InitializeConversation
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 78 startLine: 79
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -532,7 +535,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateConversation id: UpdateConversation
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 88 startLine: 89
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -560,6 +563,52 @@ items:
nameWithType.vb: SocialAction.UpdateConversation(GameTime, TimeSpan, Single) nameWithType.vb: SocialAction.UpdateConversation(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single) fullName.vb: TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: UpdateConversation(GameTime, TimeSpan, Single) name.vb: UpdateConversation(GameTime, TimeSpan, Single)
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id: AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.SocialAction
langs:
- csharp
- vb
name: AndThenUpdateBoth(GameTime, TimeSpan, float)
nameWithType: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
type: Method
source:
remote:
path: TinyLife/Actions/SocialAction.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AndThenUpdateBoth
path: ../TinyLife/Actions/SocialAction.cs
startLine: 101
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A <xref href="TinyLife.Actions.SocialAction" data-throw-if-not-resolved="false"></xref>-specific version of <xref href="TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref> that is invoked only when both partners have already started their instances of the <xref href="TinyLife.Actions.SocialAction" data-throw-if-not-resolved="false"></xref>.
Note that, unlike <xref href="TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref>, this method is invoked even when one of the involved partners is not yet in the <xref href="TinyLife.Actions.MultiAction.Stage.Main" data-throw-if-not-resolved="false"></xref> stage.
By default, this method calls <xref href="TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref> if both partners are in the action's main stage.
example: []
syntax:
content: protected virtual void AndThenUpdateBoth(GameTime time, TimeSpan passedInGame, float speedMultiplier)
parameters:
- id: time
type: Microsoft.Xna.Framework.GameTime
description: The game's time
- id: passedInGame
type: System.TimeSpan
description: The amount of time passed in game time
- 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: Protected Overridable Sub AndThenUpdateBoth(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
overload: TinyLife.Actions.SocialAction.AndThenUpdateBoth*
nameWithType.vb: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: AndThenUpdateBoth(GameTime, TimeSpan, Single)
- uid: TinyLife.Actions.SocialAction.IsConversationCompleted - uid: TinyLife.Actions.SocialAction.IsConversationCompleted
commentId: M:TinyLife.Actions.SocialAction.IsConversationCompleted commentId: M:TinyLife.Actions.SocialAction.IsConversationCompleted
id: IsConversationCompleted id: IsConversationCompleted
@ -578,7 +627,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsConversationCompleted id: IsConversationCompleted
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 98 startLine: 113
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -614,7 +663,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetMaxWaitTime id: GetMaxWaitTime
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 107 startLine: 122
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -648,7 +697,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EnqueuePartnerAction id: EnqueuePartnerAction
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 117 startLine: 132
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -686,7 +735,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPartnerArguments id: GetPartnerArguments
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 127 startLine: 142
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -724,7 +773,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnBothCompleted id: OnBothCompleted
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 136 startLine: 151
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -759,7 +808,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AndThenUpdate id: AndThenUpdate
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 139 startLine: 154
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -806,7 +855,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AndThenIsCompleted id: AndThenIsCompleted
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 146 startLine: 161
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -841,7 +890,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AndThenInitialize id: AndThenInitialize
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 161 startLine: 176
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -873,7 +922,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AndThenOnCompleted id: AndThenOnCompleted
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 171 startLine: 186
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -909,7 +958,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanCancel id: CanCancel
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 181 startLine: 196
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -950,7 +999,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanMultitask id: CanMultitask
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 188 startLine: 203
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -993,7 +1042,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanStartNow id: CanStartNow
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 199 startLine: 214
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -1029,7 +1078,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetDisplayName id: GetDisplayName
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 209 startLine: 224
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -1064,7 +1113,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TryForceResult id: TryForceResult
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 214 startLine: 229
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -1111,7 +1160,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InvokeForBoth id: InvokeForBoth
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 227 startLine: 242
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -1146,7 +1195,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsHelper id: IsHelper
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 237 startLine: 252
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -1187,7 +1236,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHelper id: GetHelper
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 247 startLine: 262
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -1228,7 +1277,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRecipientAction id: GetRecipientAction
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 257 startLine: 272
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -1269,7 +1318,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CreateAskOffer id: CreateAskOffer
path: ../TinyLife/Actions/SocialAction.cs path: ../TinyLife/Actions/SocialAction.cs
startLine: 275 startLine: 290
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -1431,6 +1480,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction
@ -5389,6 +5544,124 @@ references:
- uid: Microsoft.Xna.Framework - uid: Microsoft.Xna.Framework
name: Framework name: Framework
isExternal: true isExternal: true
- uid: TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.SocialAction
isExternal: true
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: AndThenUpdate(GameTime, TimeSpan, float)
nameWithType: SocialAction.AndThenUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: SocialAction.AndThenUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: AndThenUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdate
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_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.SocialAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdate
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_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.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.SocialAction
isExternal: true
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_UpdateConversation_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: UpdateConversation(GameTime, TimeSpan, float)
nameWithType: SocialAction.UpdateConversation(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: SocialAction.UpdateConversation(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: UpdateConversation(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: UpdateConversation
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_UpdateConversation_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.SocialAction.UpdateConversation(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: UpdateConversation
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_UpdateConversation_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.MultiAction.Stage.Main
commentId: F:TinyLife.Actions.MultiAction.Stage.Main
href: TinyLife.Actions.MultiAction.Stage.html#TinyLife_Actions_MultiAction_Stage_Main
name: Main
nameWithType: MultiAction.Stage.Main
fullName: TinyLife.Actions.MultiAction.Stage.Main
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth*
commentId: Overload:TinyLife.Actions.SocialAction.AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: AndThenUpdateBoth
nameWithType: SocialAction.AndThenUpdateBoth
fullName: TinyLife.Actions.SocialAction.AndThenUpdateBoth
- uid: TinyLife.Actions.Action.IsCompleted - uid: TinyLife.Actions.Action.IsCompleted
commentId: M:TinyLife.Actions.Action.IsCompleted commentId: M:TinyLife.Actions.Action.IsCompleted
parent: TinyLife.Actions.Action parent: TinyLife.Actions.Action

View file

@ -50,6 +50,8 @@ items:
- TinyLife.Actions.MultiAction.InProgressTime - TinyLife.Actions.MultiAction.InProgressTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -489,6 +491,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -62,6 +62,7 @@ items:
- TinyLife.Actions.SocialAction.InProgressTime - TinyLife.Actions.SocialAction.InProgressTime
- TinyLife.Actions.SocialAction.CreateFirstActions - TinyLife.Actions.SocialAction.CreateFirstActions
- TinyLife.Actions.SocialAction.InitializeConversation - TinyLife.Actions.SocialAction.InitializeConversation
- TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.SocialAction.GetMaxWaitTime - TinyLife.Actions.SocialAction.GetMaxWaitTime
- TinyLife.Actions.SocialAction.EnqueuePartnerAction(TinyLife.Actions.ActionInfo) - TinyLife.Actions.SocialAction.EnqueuePartnerAction(TinyLife.Actions.ActionInfo)
- TinyLife.Actions.SocialAction.GetPartnerArguments(TinyLife.Actions.ActionInfo) - TinyLife.Actions.SocialAction.GetPartnerArguments(TinyLife.Actions.ActionInfo)
@ -83,6 +84,8 @@ items:
- TinyLife.Actions.MultiAction.MainElapsedTime - TinyLife.Actions.MultiAction.MainElapsedTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreInitialize - TinyLife.Actions.MultiAction.PreInitialize
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
@ -884,6 +887,59 @@ references:
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_InitializeConversation href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_InitializeConversation
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.SocialAction
isExternal: true
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: AndThenUpdateBoth(GameTime, TimeSpan, float)
nameWithType: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: SocialAction.AndThenUpdateBoth(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: AndThenUpdateBoth(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_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.SocialAction.AndThenUpdateBoth(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdateBoth
href: TinyLife.Actions.SocialAction.html#TinyLife_Actions_SocialAction_AndThenUpdateBoth_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.SocialAction.GetMaxWaitTime - uid: TinyLife.Actions.SocialAction.GetMaxWaitTime
commentId: M:TinyLife.Actions.SocialAction.GetMaxWaitTime commentId: M:TinyLife.Actions.SocialAction.GetMaxWaitTime
parent: TinyLife.Actions.SocialAction parent: TinyLife.Actions.SocialAction
@ -1499,6 +1555,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreInitialize - uid: TinyLife.Actions.MultiAction.PreInitialize
commentId: M:TinyLife.Actions.MultiAction.PreInitialize commentId: M:TinyLife.Actions.MultiAction.PreInitialize
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -55,6 +55,8 @@ items:
- TinyLife.Actions.MultiAction.InProgressTime - TinyLife.Actions.MultiAction.InProgressTime
- TinyLife.Actions.MultiAction.CurrentStage - TinyLife.Actions.MultiAction.CurrentStage
- TinyLife.Actions.MultiAction.CreateLastActions - TinyLife.Actions.MultiAction.CreateLastActions
- TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.Actions.MultiAction.Initialize - TinyLife.Actions.MultiAction.Initialize
@ -643,6 +645,112 @@ references:
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
- name: ( - name: (
- name: ) - name: )
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnFirstUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnFirstUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnFirstUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnFirstUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.OnFirstUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnFirstUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnFirstUpdate_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.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: OnLastUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.OnLastUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.OnLastUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: OnLastUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.OnLastUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: OnLastUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_OnLastUpdate_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.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) - uid: TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.MultiAction.PreCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.MultiAction parent: TinyLife.Actions.MultiAction

View file

@ -22,7 +22,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DifficultyModifier id: DifficultyModifier
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 664 startLine: 667
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -51,7 +51,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Chill id: Chill
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 669 startLine: 672
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -79,7 +79,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Normal id: Normal
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 673 startLine: 676
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -107,7 +107,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Intense id: Intense
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 677 startLine: 680
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife

View file

@ -27,7 +27,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Instance id: Instance
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 487 startLine: 486
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -79,7 +79,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Type id: Type
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 494 startLine: 493
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -118,7 +118,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Amount id: Amount
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 499 startLine: 498
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -157,7 +157,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TotalTime id: TotalTime
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 504 startLine: 503
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -196,7 +196,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Time id: Time
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 509 startLine: 508
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -237,7 +237,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Person id: Person
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 514 startLine: 513
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -268,7 +268,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Source id: Source
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 519 startLine: 518
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -302,7 +302,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PassTime id: PassTime
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 539 startLine: 538
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -337,7 +337,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate id: Validate
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 553 startLine: 552
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions

View file

@ -5966,7 +5966,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetDisplayName id: GetDisplayName
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 421 startLine: 420
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -6005,7 +6005,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register id: Register
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 434 startLine: 433
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -6040,7 +6040,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IfHasPersonality id: IfHasPersonality
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 449 startLine: 448
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions
@ -6086,7 +6086,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsObjectAround id: IsObjectAround
path: ../TinyLife/Emotions/EmotionModifier.cs path: ../TinyLife/Emotions/EmotionModifier.cs
startLine: 462 startLine: 461
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Emotions namespace: TinyLife.Emotions

View file

@ -26,7 +26,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GameMode id: GameMode
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1438 startLine: 1440
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -55,7 +55,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InitialLoad id: InitialLoad
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1441 startLine: 1443
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -83,7 +83,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Splash id: Splash
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1443 startLine: 1445
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -111,7 +111,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MainMenu id: MainMenu
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1445 startLine: 1447
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -139,7 +139,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SelectHousehold id: SelectHousehold
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1447 startLine: 1449
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -167,7 +167,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InGameHousehold id: InGameHousehold
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1449 startLine: 1451
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -195,7 +195,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BuildOnly id: BuildOnly
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1451 startLine: 1453
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -223,7 +223,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CharacterCreation id: CharacterCreation
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1453 startLine: 1455
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife

View file

@ -1085,7 +1085,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SwitchMap id: SwitchMap
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 847 startLine: 849
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1123,7 +1123,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanBeExtremelyFast id: CanBeExtremelyFast
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 874 startLine: 876
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1157,7 +1157,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanSwitchGameModes id: CanSwitchGameModes
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 885 startLine: 887
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1191,7 +1191,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FadeKeyboardLighting id: FadeKeyboardLighting
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 900 startLine: 902
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1226,7 +1226,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TakeScreenshot id: TakeScreenshot
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 926 startLine: 928
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1267,7 +1267,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MarkLotVisible id: MarkLotVisible
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 954 startLine: 956
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1304,7 +1304,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MarkLotNonVisible id: MarkLotNonVisible
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 970 startLine: 972
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1336,7 +1336,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsLotVisible id: IsLotVisible
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 981 startLine: 983
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1374,7 +1374,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FollowPerson id: FollowPerson
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 994 startLine: 996
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1418,7 +1418,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddMapToSave id: AddMapToSave
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1024 startLine: 1026
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1456,7 +1456,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveMapFromSave id: RemoveMapFromSave
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1046 startLine: 1048
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1488,7 +1488,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CompleteAchievement id: CompleteAchievement
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1057 startLine: 1059
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife

View file

@ -24,7 +24,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GameSpeed id: GameSpeed
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 614 startLine: 617
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -56,7 +56,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Paused id: Paused
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 619 startLine: 622
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -84,7 +84,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Regular id: Regular
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 623 startLine: 626
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -112,7 +112,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Fast id: Fast
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 627 startLine: 630
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -140,7 +140,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VeryFast id: VeryFast
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 631 startLine: 634
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -168,7 +168,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExtremelyFast id: ExtremelyFast
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 636 startLine: 639
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife

View file

@ -22,7 +22,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AgeGroup id: AgeGroup
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3491 startLine: 3479
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -67,7 +67,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Baby id: Baby
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3498 startLine: 3486
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -95,7 +95,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Child id: Child
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3504 startLine: 3492
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -123,7 +123,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Adult id: Adult
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3510 startLine: 3498
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -24,7 +24,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DeathReason id: DeathReason
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3442 startLine: 3430
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -53,7 +53,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Starvation id: Starvation
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3448 startLine: 3436
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -84,7 +84,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InexplicableReasons id: InexplicableReasons
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3453 startLine: 3441
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -115,7 +115,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Electrocution id: Electrocution
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3458 startLine: 3446
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -146,7 +146,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TooMuchProtein id: TooMuchProtein
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3462 startLine: 3450
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -174,7 +174,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TooMuchBrew id: TooMuchBrew
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3466 startLine: 3454
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -25,7 +25,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LifeSpan id: LifeSpan
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3474 startLine: 3462
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -59,7 +59,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VeryShort id: VeryShort
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3477 startLine: 3465
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -85,7 +85,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Short id: Short
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3478 startLine: 3466
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -111,7 +111,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Normal id: Normal
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3479 startLine: 3467
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -137,7 +137,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Long id: Long
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3480 startLine: 3468
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -163,7 +163,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VeryLong id: VeryLong
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3481 startLine: 3469
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -189,7 +189,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Infinite id: Infinite
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3482 startLine: 3470
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -1830,7 +1830,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnPositionChanged id: OnPositionChanged
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 474 startLine: 475
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1873,7 +1873,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetFreeActionSpotInfo id: GetFreeActionSpotInfo
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 476 startLine: 477
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1906,7 +1906,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetMapAndValidate id: SetMapAndValidate
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 487 startLine: 488
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1946,7 +1946,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HasCategory id: HasCategory
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 504 startLine: 505
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1984,7 +1984,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DoDraw id: DoDraw
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 516 startLine: 517
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2031,7 +2031,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DoUpdate id: DoUpdate
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 533 startLine: 534
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2074,7 +2074,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DrawColumns id: DrawColumns
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 562 startLine: 563
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2156,7 +2156,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetModCategory id: GetModCategory
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 627 startLine: 628
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -104,7 +104,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ObjectCategory id: ObjectCategory
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 655 startLine: 656
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -171,7 +171,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Nothing id: Nothing
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 658 startLine: 659
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -200,7 +200,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Ground id: Ground
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 660 startLine: 661
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -229,7 +229,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Chair id: Chair
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 662 startLine: 663
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -258,7 +258,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Sofa id: Sofa
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 664 startLine: 665
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -287,7 +287,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BabySittable id: BabySittable
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 666 startLine: 667
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -316,7 +316,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Toilet id: Toilet
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 668 startLine: 669
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -345,7 +345,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SingleBed id: SingleBed
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 670 startLine: 671
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -374,7 +374,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DoubleBed id: DoubleBed
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 672 startLine: 673
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -403,7 +403,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Fridge id: Fridge
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 674 startLine: 675
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -432,7 +432,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Shower id: Shower
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 676 startLine: 677
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -461,7 +461,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Counter id: Counter
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 678 startLine: 679
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -490,7 +490,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Stove id: Stove
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 680 startLine: 681
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -519,7 +519,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Oven id: Oven
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 682 startLine: 683
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -548,7 +548,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SmallObject id: SmallObject
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 684 startLine: 685
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -577,7 +577,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: NonBuyable id: NonBuyable
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 686 startLine: 687
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -606,7 +606,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Table id: Table
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 688 startLine: 689
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -635,7 +635,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Holdable id: Holdable
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 690 startLine: 691
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -664,7 +664,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DeskObject id: DeskObject
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 692 startLine: 693
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -693,7 +693,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisallowedOnGround id: DisallowedOnGround
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 694 startLine: 695
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -722,7 +722,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Computer id: Computer
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 696 startLine: 697
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -751,7 +751,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Sink id: Sink
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 698 startLine: 699
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -780,7 +780,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CounterObject id: CounterObject
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 700 startLine: 701
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -809,7 +809,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Cleanable id: Cleanable
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 702 startLine: 703
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -838,7 +838,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: People id: People
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 704 startLine: 705
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -867,7 +867,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Mailbox id: Mailbox
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 706 startLine: 707
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -896,7 +896,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Wardrobe id: Wardrobe
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 708 startLine: 709
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -925,7 +925,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: NaturalGroundRequired id: NaturalGroundRequired
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 710 startLine: 711
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -954,7 +954,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WaterRequired id: WaterRequired
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 712 startLine: 713
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -983,7 +983,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AllowedOnWater id: AllowedOnWater
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 714 startLine: 715
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1012,7 +1012,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Self id: Self
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 716 startLine: 717
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1041,7 +1041,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WallHanging id: WallHanging
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 718 startLine: 719
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1070,7 +1070,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ForceGridPlacement id: ForceGridPlacement
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 720 startLine: 721
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1099,7 +1099,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Easel id: Easel
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 722 startLine: 723
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1128,7 +1128,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Mirror id: Mirror
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 724 startLine: 725
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1157,7 +1157,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Bookshelf id: Bookshelf
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 726 startLine: 727
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1186,7 +1186,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: NonColliding id: NonColliding
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 728 startLine: 729
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1215,7 +1215,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Gravestone id: Gravestone
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 730 startLine: 731
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1244,7 +1244,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: NonSellable id: NonSellable
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 732 startLine: 733
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1273,7 +1273,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: NonMovable id: NonMovable
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 734 startLine: 735
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1302,7 +1302,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Tree id: Tree
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 736 startLine: 737
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1331,7 +1331,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Television id: Television
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 738 startLine: 739
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1360,7 +1360,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BartendingObject id: BartendingObject
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 740 startLine: 741
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1389,7 +1389,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Walls id: Walls
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 742 startLine: 743
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1418,7 +1418,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LargeSurfaceObject id: LargeSurfaceObject
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 744 startLine: 745
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1447,7 +1447,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StandingDesk id: StandingDesk
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 746 startLine: 747
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1476,7 +1476,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Lamp id: Lamp
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 748 startLine: 749
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1505,7 +1505,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CeilingHanging id: CeilingHanging
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 750 startLine: 751
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1534,7 +1534,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanCoverWindow id: CanCoverWindow
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 752 startLine: 753
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1563,7 +1563,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanCoverDoor id: CanCoverDoor
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 754 startLine: 755
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1592,7 +1592,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Barbecue id: Barbecue
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 756 startLine: 757
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1621,7 +1621,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TrashCan id: TrashCan
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 758 startLine: 759
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1650,7 +1650,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanBeThrownAway id: CanBeThrownAway
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 760 startLine: 761
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1679,7 +1679,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanBeScrapped id: CanBeScrapped
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 762 startLine: 763
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1708,7 +1708,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ObstructedByRoofs id: ObstructedByRoofs
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 764 startLine: 765
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1737,7 +1737,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RoofAttached id: RoofAttached
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 766 startLine: 767
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1766,7 +1766,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FireLight id: FireLight
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 768 startLine: 769
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1795,7 +1795,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ToyBox id: ToyBox
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 770 startLine: 771
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1824,7 +1824,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChildStove id: ChildStove
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 772 startLine: 773
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1853,7 +1853,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Sandbox id: Sandbox
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 774 startLine: 775
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1882,7 +1882,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JungleGym id: JungleGym
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 776 startLine: 777
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1911,7 +1911,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Newspaper id: Newspaper
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 778 startLine: 779
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1940,7 +1940,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CoffeeMachine id: CoffeeMachine
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 780 startLine: 781
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1969,7 +1969,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CafeDisplayCase id: CafeDisplayCase
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 782 startLine: 783
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1998,7 +1998,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GroundItem id: GroundItem
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 784 startLine: 785
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2027,7 +2027,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TreeDecor id: TreeDecor
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 786 startLine: 787
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2056,7 +2056,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OpeningHoursSign id: OpeningHoursSign
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 788 startLine: 789
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2085,7 +2085,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TeaKit id: TeaKit
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 790 startLine: 791
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2114,7 +2114,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LandlinePhone id: LandlinePhone
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 792 startLine: 793
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2143,7 +2143,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Rocks id: Rocks
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 794 startLine: 795
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2172,7 +2172,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ArtPiece id: ArtPiece
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 796 startLine: 797
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2201,7 +2201,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TallObject id: TallObject
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 798 startLine: 799
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2230,7 +2230,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Potty id: Potty
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 802 startLine: 803
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2259,7 +2259,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Treadmill id: Treadmill
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 804 startLine: 805
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2288,7 +2288,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DumbbellHolder id: DumbbellHolder
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 806 startLine: 807
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2317,7 +2317,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WoodworkingItem id: WoodworkingItem
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 808 startLine: 809
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2346,7 +2346,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChangingStation id: ChangingStation
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 810 startLine: 811
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2375,7 +2375,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Crib id: Crib
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 812 startLine: 813
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2404,7 +2404,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BabyBathtub id: BabyBathtub
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 814 startLine: 815
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2433,7 +2433,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ProteinShakeMaker id: ProteinShakeMaker
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 816 startLine: 817
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2462,7 +2462,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_Implicit id: op_Implicit
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 820 startLine: 821
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2499,7 +2499,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_Implicit id: op_Implicit
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 825 startLine: 826
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2537,7 +2537,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_BitwiseOr id: op_BitwiseOr
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 830 startLine: 831
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2578,7 +2578,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_BitwiseAnd id: op_BitwiseAnd
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 835 startLine: 836
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2619,7 +2619,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_ExclusiveOr id: op_ExclusiveOr
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 840 startLine: 841
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -2660,7 +2660,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_OnesComplement id: op_OnesComplement
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 845 startLine: 846
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -28,7 +28,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AttachmentType id: AttachmentType
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1147 startLine: 1148
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -57,7 +57,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: None id: None
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1150 startLine: 1151
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -83,7 +83,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Furniture id: Furniture
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1151 startLine: 1152
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -109,7 +109,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Person id: Person
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1152 startLine: 1153
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -135,7 +135,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Wall id: Wall
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1153 startLine: 1154
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -161,7 +161,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Roof id: Roof
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1154 startLine: 1155
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -187,7 +187,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Stairs id: Stairs
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1155 startLine: 1156
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -213,7 +213,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Ceiling id: Ceiling
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1156 startLine: 1157
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -239,7 +239,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Ground id: Ground
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1157 startLine: 1158
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -265,7 +265,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Ui id: Ui
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1158 startLine: 1159
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -32,7 +32,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ParentInfo id: ParentInfo
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 880 startLine: 881
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -71,7 +71,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Type id: Type
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 885 startLine: 886
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -100,7 +100,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LayerDepth id: LayerDepth
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 891 startLine: 892
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -134,7 +134,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ShouldDraw id: ShouldDraw
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 895 startLine: 896
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -165,7 +165,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 909 startLine: 910
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -203,7 +203,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 919 startLine: 920
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -238,7 +238,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 928 startLine: 929
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -273,7 +273,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 937 startLine: 938
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -308,7 +308,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 946 startLine: 947
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -343,7 +343,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 957 startLine: 958
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -385,7 +385,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetDrawOffset id: GetDrawOffset
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 968 startLine: 969
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -420,7 +420,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetDepthOffset id: GetDepthOffset
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 988 startLine: 989
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -455,7 +455,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetDepthPos id: GetDepthPos
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1025 startLine: 1026
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -523,7 +523,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRowColumnSize id: GetRowColumnSize
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 1111 startLine: 1112
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -13,7 +13,7 @@ items:
- TinyLife.Objects.Person.DiaperDirty - TinyLife.Objects.Person.DiaperDirty
- TinyLife.Objects.Person.DrawLooksLayer(Microsoft.Xna.Framework.Graphics.SpriteBatch,MLEM.Animations.SpriteAnimation,MLEM.Textures.TextureRegion,TinyLife.Objects.WornClothes,System.Int32,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,Microsoft.Xna.Framework.Color,System.Single,System.Single) - TinyLife.Objects.Person.DrawLooksLayer(Microsoft.Xna.Framework.Graphics.SpriteBatch,MLEM.Animations.SpriteAnimation,MLEM.Textures.TextureRegion,TinyLife.Objects.WornClothes,System.Int32,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,Microsoft.Xna.Framework.Color,System.Single,System.Single)
- TinyLife.Objects.Person.DrawSize - TinyLife.Objects.Person.DrawSize
- TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) - TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
- TinyLife.Objects.Person.FullNamePronouns - TinyLife.Objects.Person.FullNamePronouns
- TinyLife.Objects.Person.GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point) - TinyLife.Objects.Person.GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point)
- TinyLife.Objects.Person.GetAiPriorityForObject(TinyLife.Objects.MapObject,TinyLife.Objects.ObjectCategory) - TinyLife.Objects.Person.GetAiPriorityForObject(TinyLife.Objects.MapObject,TinyLife.Objects.ObjectCategory)
@ -254,7 +254,6 @@ items:
- TinyLife.Objects.PersonLike.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType) - TinyLife.Objects.PersonLike.OnActionCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType)
- TinyLife.Objects.PersonLike.UpdateAction(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Collections.Generic.IEnumerable{TinyLife.Goals.IGoalTriggerable}) - TinyLife.Objects.PersonLike.UpdateAction(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Collections.Generic.IEnumerable{TinyLife.Goals.IGoalTriggerable})
- TinyLife.Objects.PersonLike.InitializeAction(TinyLife.Actions.Action) - TinyLife.Objects.PersonLike.InitializeAction(TinyLife.Actions.Action)
- TinyLife.Objects.PersonLike.ValidateClothes
- TinyLife.Objects.PersonLike.GetRandomSpeakSound(TinyLife.Objects.VoiceStyle,TinyLife.Objects.SpeakStyle,System.Collections.Generic.List{Microsoft.Xna.Framework.Audio.SoundEffect},System.Nullable{System.TimeSpan}) - TinyLife.Objects.PersonLike.GetRandomSpeakSound(TinyLife.Objects.VoiceStyle,TinyLife.Objects.SpeakStyle,System.Collections.Generic.List{Microsoft.Xna.Framework.Audio.SoundEffect},System.Nullable{System.TimeSpan})
- TinyLife.Objects.MapObject.PersonRotationOrder - TinyLife.Objects.MapObject.PersonRotationOrder
- TinyLife.Objects.MapObject.OnCreated - TinyLife.Objects.MapObject.OnCreated
@ -932,10 +931,10 @@ items:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
syntax: syntax:
content: public event Action<(SpriteBatch Batch, Vector2 Pos, float Scale, Direction2 Rotation, Outfit Outfit, Pose Pose, AgeGroup Age, LifeSpan LifeSpan, EventPhase Phase)> OnDrawUi content: public event Action<(SpriteBatch Batch, Vector2 Pos, float Scale, Direction2 Rotation, Outfit Outfit, Pose Pose, AgeGroup Age, EventPhase Phase)> OnDrawUi
return: return:
type: System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}} type: System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}}
content.vb: Public Event OnDrawUi As Action(Of (Batch As SpriteBatch, Pos As Vector2, Scale As Single, Rotation As Direction2, Outfit As Outfit, Pose As Pose, Age As AgeGroup, LifeSpan As LifeSpan, Phase As EventPhase)) content.vb: Public Event OnDrawUi As Action(Of (Batch As SpriteBatch, Pos As Vector2, Scale As Single, Rotation As Direction2, Outfit As Outfit, Pose As Pose, Age As AgeGroup, Phase As EventPhase))
- uid: TinyLife.Objects.Person.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single) - uid: TinyLife.Objects.Person.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single)
commentId: M:TinyLife.Objects.Person.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single) commentId: M:TinyLife.Objects.Person.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single)
id: '#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single)' id: '#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Single)'
@ -1365,7 +1364,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPivot id: GetPivot
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 309 startLine: 312
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1397,7 +1396,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnRoomCheck id: OnRoomCheck
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 314 startLine: 317
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1429,7 +1428,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate id: Validate
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 320 startLine: 323
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1466,7 +1465,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHoverInfo id: GetHoverInfo
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 354 startLine: 357
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1502,7 +1501,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnAgeChanged id: OnAgeChanged
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 366 startLine: 369
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1535,7 +1534,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GoToExitRoad id: GoToExitRoad
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 391 startLine: 394
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1567,7 +1566,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetCurrentGoals id: GetCurrentGoals
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 397 startLine: 400
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1584,16 +1583,16 @@ items:
content.vb: Public Overrides Function GetCurrentGoals() As List(Of IGoalTriggerable) content.vb: Public Overrides Function GetCurrentGoals() As List(Of IGoalTriggerable)
overridden: TinyLife.Objects.PersonLike.GetCurrentGoals overridden: TinyLife.Objects.PersonLike.GetCurrentGoals
overload: TinyLife.Objects.Person.GetCurrentGoals* overload: TinyLife.Objects.Person.GetCurrentGoals*
- uid: TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) - uid: TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
commentId: M:TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) commentId: M:TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
id: DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) id: DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
parent: TinyLife.Objects.Person parent: TinyLife.Objects.Person
langs: langs:
- csharp - csharp
- vb - vb
name: DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) name: DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?)
nameWithType: Person.DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) nameWithType: Person.DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?)
fullName: TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, float, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?, TinyLife.Objects.LifeSpan?) fullName: TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, float, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?)
type: Method type: Method
source: source:
remote: remote:
@ -1602,14 +1601,14 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DrawUi id: DrawUi
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 409 startLine: 412
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
summary: Renders this person on a ui level rather than a world level summary: Renders this person on a ui level rather than a world level
example: [] example: []
syntax: syntax:
content: public override void DrawUi(SpriteBatch batch, Vector2 pos, float scale, Direction2 rotation = Direction2.Right, Outfit outfit = null, Pose? pose = null, AgeGroup? age = null, LifeSpan? lifeSpan = null) content: public override void DrawUi(SpriteBatch batch, Vector2 pos, float scale, Direction2 rotation = Direction2.Right, Outfit outfit = null, Pose? pose = null, AgeGroup? age = null)
parameters: parameters:
- id: batch - id: batch
type: Microsoft.Xna.Framework.Graphics.SpriteBatch type: Microsoft.Xna.Framework.Graphics.SpriteBatch
@ -1629,14 +1628,12 @@ items:
type: System.Nullable{TinyLife.Objects.Pose} type: System.Nullable{TinyLife.Objects.Pose}
- id: age - id: age
type: System.Nullable{TinyLife.Objects.AgeGroup} type: System.Nullable{TinyLife.Objects.AgeGroup}
- id: lifeSpan content.vb: Public Overrides Sub DrawUi(batch As SpriteBatch, pos As Vector2, scale As Single, rotation As Direction2 = Direction2.Right, outfit As Outfit = Nothing, pose As Pose? = Nothing, age As AgeGroup? = Nothing)
type: System.Nullable{TinyLife.Objects.LifeSpan} overridden: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
content.vb: Public Overrides Sub DrawUi(batch As SpriteBatch, pos As Vector2, scale As Single, rotation As Direction2 = Direction2.Right, outfit As Outfit = Nothing, pose As Pose? = Nothing, age As AgeGroup? = Nothing, lifeSpan As LifeSpan? = Nothing)
overridden: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan})
overload: TinyLife.Objects.Person.DrawUi* overload: TinyLife.Objects.Person.DrawUi*
nameWithType.vb: Person.DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) nameWithType.vb: Person.DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?)
fullName.vb: TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Single, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?, TinyLife.Objects.LifeSpan?) fullName.vb: TinyLife.Objects.Person.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Single, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?)
name.vb: DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) name.vb: DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?)
- uid: TinyLife.Objects.Person.GetPassiveNeedReduction(TinyLife.NeedType) - uid: TinyLife.Objects.Person.GetPassiveNeedReduction(TinyLife.NeedType)
commentId: M:TinyLife.Objects.Person.GetPassiveNeedReduction(TinyLife.NeedType) commentId: M:TinyLife.Objects.Person.GetPassiveNeedReduction(TinyLife.NeedType)
id: GetPassiveNeedReduction(TinyLife.NeedType) id: GetPassiveNeedReduction(TinyLife.NeedType)
@ -1655,7 +1652,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPassiveNeedReduction id: GetPassiveNeedReduction
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 450 startLine: 452
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1694,7 +1691,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetProjects id: GetProjects
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 474 startLine: 476
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1735,7 +1732,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetProject id: GetProject
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 484 startLine: 486
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1776,7 +1773,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StartProject id: StartProject
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 493 startLine: 495
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1811,7 +1808,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetJob id: SetJob
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 504 startLine: 506
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1864,7 +1861,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddJob id: AddJob
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 518 startLine: 520
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1905,7 +1902,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveJob id: RemoveJob
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 535 startLine: 537
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -1940,7 +1937,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Create id: Create
path: ../TinyLife/Objects/Person.cs path: ../TinyLife/Objects/Person.cs
startLine: 570 startLine: 572
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6373,25 +6370,6 @@ references:
name: Action name: Action
href: TinyLife.Actions.Action.html href: TinyLife.Actions.Action.html
- name: ) - name: )
- uid: TinyLife.Objects.PersonLike.ValidateClothes
commentId: M:TinyLife.Objects.PersonLike.ValidateClothes
parent: TinyLife.Objects.PersonLike
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_ValidateClothes
name: ValidateClothes()
nameWithType: PersonLike.ValidateClothes()
fullName: TinyLife.Objects.PersonLike.ValidateClothes()
spec.csharp:
- uid: TinyLife.Objects.PersonLike.ValidateClothes
name: ValidateClothes
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_ValidateClothes
- name: (
- name: )
spec.vb:
- uid: TinyLife.Objects.PersonLike.ValidateClothes
name: ValidateClothes
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_ValidateClothes
- name: (
- name: )
- uid: TinyLife.Objects.PersonLike.GetRandomSpeakSound(TinyLife.Objects.VoiceStyle,TinyLife.Objects.SpeakStyle,System.Collections.Generic.List{Microsoft.Xna.Framework.Audio.SoundEffect},System.Nullable{System.TimeSpan}) - uid: TinyLife.Objects.PersonLike.GetRandomSpeakSound(TinyLife.Objects.VoiceStyle,TinyLife.Objects.SpeakStyle,System.Collections.Generic.List{Microsoft.Xna.Framework.Audio.SoundEffect},System.Nullable{System.TimeSpan})
commentId: M:TinyLife.Objects.PersonLike.GetRandomSpeakSound(TinyLife.Objects.VoiceStyle,TinyLife.Objects.SpeakStyle,System.Collections.Generic.List{Microsoft.Xna.Framework.Audio.SoundEffect},System.Nullable{System.TimeSpan}) commentId: M:TinyLife.Objects.PersonLike.GetRandomSpeakSound(TinyLife.Objects.VoiceStyle,TinyLife.Objects.SpeakStyle,System.Collections.Generic.List{Microsoft.Xna.Framework.Audio.SoundEffect},System.Nullable{System.TimeSpan})
parent: TinyLife.Objects.PersonLike parent: TinyLife.Objects.PersonLike
@ -9469,17 +9447,17 @@ references:
href: TinyLife.Mods.EventPhase.html href: TinyLife.Mods.EventPhase.html
- name: ) - name: )
- name: ) - name: )
- uid: System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}} - uid: System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}}
commentId: T:System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}} commentId: T:System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}}
parent: System parent: System
definition: System.Action`1 definition: System.Action`1
href: https://learn.microsoft.com/dotnet/api/system.action-1 href: https://learn.microsoft.com/dotnet/api/system.action-1
name: Action<(SpriteBatch Batch, Vector2 Pos, float Scale, Direction2 Rotation, Outfit Outfit, Pose Pose, AgeGroup Age, LifeSpan LifeSpan, EventPhase Phase)> name: Action<(SpriteBatch Batch, Vector2 Pos, float Scale, Direction2 Rotation, Outfit Outfit, Pose Pose, AgeGroup Age, EventPhase Phase)>
nameWithType: Action<(SpriteBatch Batch, Vector2 Pos, float Scale, Direction2 Rotation, Outfit Outfit, Pose Pose, AgeGroup Age, LifeSpan LifeSpan, EventPhase Phase)> nameWithType: Action<(SpriteBatch Batch, Vector2 Pos, float Scale, Direction2 Rotation, Outfit Outfit, Pose Pose, AgeGroup Age, EventPhase Phase)>
fullName: System.Action<(Microsoft.Xna.Framework.Graphics.SpriteBatch Batch, Microsoft.Xna.Framework.Vector2 Pos, float Scale, MLEM.Misc.Direction2 Rotation, TinyLife.Objects.Outfit Outfit, TinyLife.Objects.Pose Pose, TinyLife.Objects.AgeGroup Age, TinyLife.Objects.LifeSpan LifeSpan, TinyLife.Mods.EventPhase Phase)> fullName: System.Action<(Microsoft.Xna.Framework.Graphics.SpriteBatch Batch, Microsoft.Xna.Framework.Vector2 Pos, float Scale, MLEM.Misc.Direction2 Rotation, TinyLife.Objects.Outfit Outfit, TinyLife.Objects.Pose Pose, TinyLife.Objects.AgeGroup Age, TinyLife.Mods.EventPhase Phase)>
nameWithType.vb: Action(Of (Batch As SpriteBatch, Pos As Vector2, Scale As Single, Rotation As Direction2, Outfit As Outfit, Pose As Pose, Age As AgeGroup, LifeSpan As LifeSpan, Phase As EventPhase)) nameWithType.vb: Action(Of (Batch As SpriteBatch, Pos As Vector2, Scale As Single, Rotation As Direction2, Outfit As Outfit, Pose As Pose, Age As AgeGroup, Phase As EventPhase))
fullName.vb: System.Action(Of (Batch As Microsoft.Xna.Framework.Graphics.SpriteBatch, Pos As Microsoft.Xna.Framework.Vector2, Scale As Single, Rotation As MLEM.Misc.Direction2, Outfit As TinyLife.Objects.Outfit, Pose As TinyLife.Objects.Pose, Age As TinyLife.Objects.AgeGroup, LifeSpan As TinyLife.Objects.LifeSpan, Phase As TinyLife.Mods.EventPhase)) fullName.vb: System.Action(Of (Batch As Microsoft.Xna.Framework.Graphics.SpriteBatch, Pos As Microsoft.Xna.Framework.Vector2, Scale As Single, Rotation As MLEM.Misc.Direction2, Outfit As TinyLife.Objects.Outfit, Pose As TinyLife.Objects.Pose, Age As TinyLife.Objects.AgeGroup, Phase As TinyLife.Mods.EventPhase))
name.vb: Action(Of (Batch As SpriteBatch, Pos As Vector2, Scale As Single, Rotation As Direction2, Outfit As Outfit, Pose As Pose, Age As AgeGroup, LifeSpan As LifeSpan, Phase As EventPhase)) name.vb: Action(Of (Batch As SpriteBatch, Pos As Vector2, Scale As Single, Rotation As Direction2, Outfit As Outfit, Pose As Pose, Age As AgeGroup, Phase As EventPhase))
spec.csharp: spec.csharp:
- uid: System.Action`1 - uid: System.Action`1
name: Action name: Action
@ -9491,18 +9469,18 @@ references:
name: SpriteBatch name: SpriteBatch
isExternal: true isExternal: true
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Batch - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Batch
name: Batch name: Batch
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.batch href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.batch
- name: ',' - name: ','
- name: " " - name: " "
- uid: Microsoft.Xna.Framework.Vector2 - uid: Microsoft.Xna.Framework.Vector2
name: Vector2 name: Vector2
isExternal: true isExternal: true
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Pos - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Pos
name: Pos name: Pos
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.pos href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.pos
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.Single - uid: System.Single
@ -9510,63 +9488,54 @@ references:
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single href: https://learn.microsoft.com/dotnet/api/system.single
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Scale - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Scale
name: Scale name: Scale
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.scale href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.scale
- name: ',' - name: ','
- name: " " - name: " "
- uid: MLEM.Misc.Direction2 - uid: MLEM.Misc.Direction2
name: Direction2 name: Direction2
isExternal: true isExternal: true
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Rotation - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Rotation
name: Rotation name: Rotation
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.rotation href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.rotation
- name: ',' - name: ','
- name: " " - name: " "
- uid: TinyLife.Objects.Outfit - uid: TinyLife.Objects.Outfit
name: Outfit name: Outfit
href: TinyLife.Objects.Outfit.html href: TinyLife.Objects.Outfit.html
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Outfit - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Outfit
name: Outfit name: Outfit
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.outfit href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.outfit
- name: ',' - name: ','
- name: " " - name: " "
- uid: TinyLife.Objects.Pose - uid: TinyLife.Objects.Pose
name: Pose name: Pose
href: TinyLife.Objects.Pose.html href: TinyLife.Objects.Pose.html
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Pose - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Pose
name: Pose name: Pose
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.pose href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.pose
- name: ',' - name: ','
- name: " " - name: " "
- uid: TinyLife.Objects.AgeGroup - uid: TinyLife.Objects.AgeGroup
name: AgeGroup name: AgeGroup
href: TinyLife.Objects.AgeGroup.html href: TinyLife.Objects.AgeGroup.html
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Age - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Age
name: Age name: Age
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.age href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.age
- name: ','
- name: " "
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
href: TinyLife.Objects.LifeSpan.html
- name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.LifeSpan
name: LifeSpan
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.lifespan
- name: ',' - name: ','
- name: " " - name: " "
- uid: TinyLife.Mods.EventPhase - uid: TinyLife.Mods.EventPhase
name: EventPhase name: EventPhase
href: TinyLife.Mods.EventPhase.html href: TinyLife.Mods.EventPhase.html
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Phase - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Phase
name: Phase name: Phase
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.phase href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.phase
- name: ) - name: )
- name: '>' - name: '>'
spec.vb: spec.vb:
@ -9578,9 +9547,9 @@ references:
- name: Of - name: Of
- name: " " - name: " "
- name: ( - name: (
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Batch - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Batch
name: Batch name: Batch
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.batch href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.batch
- name: " " - name: " "
- name: As - name: As
- name: " " - name: " "
@ -9589,9 +9558,9 @@ references:
isExternal: true isExternal: true
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Pos - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Pos
name: Pos name: Pos
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.pos href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.pos
- name: " " - name: " "
- name: As - name: As
- name: " " - name: " "
@ -9600,9 +9569,9 @@ references:
isExternal: true isExternal: true
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Scale - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Scale
name: Scale name: Scale
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.scale href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.scale
- name: " " - name: " "
- name: As - name: As
- name: " " - name: " "
@ -9612,9 +9581,9 @@ references:
href: https://learn.microsoft.com/dotnet/api/system.single href: https://learn.microsoft.com/dotnet/api/system.single
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Rotation - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Rotation
name: Rotation name: Rotation
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.rotation href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.rotation
- name: " " - name: " "
- name: As - name: As
- name: " " - name: " "
@ -9623,9 +9592,9 @@ references:
isExternal: true isExternal: true
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Outfit - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Outfit
name: Outfit name: Outfit
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.outfit href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.outfit
- name: " " - name: " "
- name: As - name: As
- name: " " - name: " "
@ -9634,9 +9603,9 @@ references:
href: TinyLife.Objects.Outfit.html href: TinyLife.Objects.Outfit.html
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Pose - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Pose
name: Pose name: Pose
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.pose href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.pose
- name: " " - name: " "
- name: As - name: As
- name: " " - name: " "
@ -9645,9 +9614,9 @@ references:
href: TinyLife.Objects.Pose.html href: TinyLife.Objects.Pose.html
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Age - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Age
name: Age name: Age
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.age href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.age
- name: " " - name: " "
- name: As - name: As
- name: " " - name: " "
@ -9656,20 +9625,9 @@ references:
href: TinyLife.Objects.AgeGroup.html href: TinyLife.Objects.AgeGroup.html
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.LifeSpan - uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Mods.EventPhase}}.Phase
name: LifeSpan
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.lifespan
- name: " "
- name: As
- name: " "
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
href: TinyLife.Objects.LifeSpan.html
- name: ','
- name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,TinyLife.Objects.Pose,TinyLife.Objects.AgeGroup,System.ValueTuple{TinyLife.Objects.LifeSpan,TinyLife.Mods.EventPhase}}.Phase
name: Phase name: Phase
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.objects.lifespan,tinylife.mods.eventphase--.phase href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,mlem.misc.direction2,tinylife.objects.outfit,tinylife.objects.pose,tinylife.objects.agegroup,system.valuetuple-tinylife.mods.eventphase--.phase
- name: " " - name: " "
- name: As - name: As
- name: " " - name: " "
@ -11016,21 +10974,21 @@ references:
name: Right name: Right
nameWithType: Direction2.Right nameWithType: Direction2.Right
fullName: MLEM.Misc.Direction2.Right fullName: MLEM.Misc.Direction2.Right
- uid: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) - uid: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
commentId: M:TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) commentId: M:TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
parent: TinyLife.Objects.PersonLike parent: TinyLife.Objects.PersonLike
isExternal: true isExternal: true
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__System_Nullable_TinyLife_Objects_LifeSpan__ href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__
name: DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) name: DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?)
nameWithType: PersonLike.DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) nameWithType: PersonLike.DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?)
fullName: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, float, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?, TinyLife.Objects.LifeSpan?) fullName: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, float, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?)
nameWithType.vb: PersonLike.DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) nameWithType.vb: PersonLike.DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?)
fullName.vb: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Single, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?, TinyLife.Objects.LifeSpan?) fullName.vb: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Single, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?)
name.vb: DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) name.vb: DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?)
spec.csharp: spec.csharp:
- uid: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) - uid: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
name: DrawUi name: DrawUi
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__System_Nullable_TinyLife_Objects_LifeSpan__ href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__
- name: ( - name: (
- uid: Microsoft.Xna.Framework.Graphics.SpriteBatch - uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
name: SpriteBatch name: SpriteBatch
@ -11068,17 +11026,11 @@ references:
name: AgeGroup name: AgeGroup
href: TinyLife.Objects.AgeGroup.html href: TinyLife.Objects.AgeGroup.html
- name: '?' - name: '?'
- name: ','
- name: " "
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
href: TinyLife.Objects.LifeSpan.html
- name: '?'
- name: ) - name: )
spec.vb: spec.vb:
- uid: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) - uid: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
name: DrawUi name: DrawUi
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__System_Nullable_TinyLife_Objects_LifeSpan__ href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__
- name: ( - name: (
- uid: Microsoft.Xna.Framework.Graphics.SpriteBatch - uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
name: SpriteBatch name: SpriteBatch
@ -11116,16 +11068,10 @@ references:
name: AgeGroup name: AgeGroup
href: TinyLife.Objects.AgeGroup.html href: TinyLife.Objects.AgeGroup.html
- name: '?' - name: '?'
- name: ','
- name: " "
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
href: TinyLife.Objects.LifeSpan.html
- name: '?'
- name: ) - name: )
- uid: TinyLife.Objects.Person.DrawUi* - uid: TinyLife.Objects.Person.DrawUi*
commentId: Overload:TinyLife.Objects.Person.DrawUi commentId: Overload:TinyLife.Objects.Person.DrawUi
href: TinyLife.Objects.Person.html#TinyLife_Objects_Person_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__System_Nullable_TinyLife_Objects_LifeSpan__ href: TinyLife.Objects.Person.html#TinyLife_Objects_Person_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__
name: DrawUi name: DrawUi
nameWithType: Person.DrawUi nameWithType: Person.DrawUi
fullName: TinyLife.Objects.Person.DrawUi fullName: TinyLife.Objects.Person.DrawUi
@ -11179,24 +11125,6 @@ references:
name: AgeGroup name: AgeGroup
href: TinyLife.Objects.AgeGroup.html href: TinyLife.Objects.AgeGroup.html
- name: '?' - name: '?'
- uid: System.Nullable{TinyLife.Objects.LifeSpan}
commentId: T:System.Nullable{TinyLife.Objects.LifeSpan}
parent: System
definition: System.Nullable`1
href: TinyLife.Objects.LifeSpan.html
name: LifeSpan?
nameWithType: LifeSpan?
fullName: TinyLife.Objects.LifeSpan?
spec.csharp:
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
href: TinyLife.Objects.LifeSpan.html
- name: '?'
spec.vb:
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
href: TinyLife.Objects.LifeSpan.html
- name: '?'
- uid: System.Nullable`1 - uid: System.Nullable`1
commentId: T:System.Nullable`1 commentId: T:System.Nullable`1
isExternal: true isExternal: true

View file

@ -5,7 +5,7 @@ items:
id: PersonAi id: PersonAi
parent: TinyLife.Objects parent: TinyLife.Objects
children: children:
- TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean) - TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean,System.Boolean,TinyLife.Actions.ActionArgument[])
langs: langs:
- csharp - csharp
- vb - vb
@ -44,16 +44,16 @@ items:
- System.Object.ToString - System.Object.ToString
extensionMethods: extensionMethods:
- TinyLife.Objects.PersonAi.TinyLife.Utilities.Extensions.JsonCopy``1 - TinyLife.Objects.PersonAi.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean) - uid: TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean,System.Boolean,TinyLife.Actions.ActionArgument[])
commentId: M:TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean) commentId: M:TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean,System.Boolean,TinyLife.Actions.ActionArgument[])
id: StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean) id: StartAutomatically(TinyLife.Objects.PersonLike,TinyLife.Actions.ActionType,System.Boolean,System.Boolean,TinyLife.Actions.ActionArgument[])
parent: TinyLife.Objects.PersonAi parent: TinyLife.Objects.PersonAi
langs: langs:
- csharp - csharp
- vb - vb
name: StartAutomatically(PersonLike, ActionType, bool) name: StartAutomatically(PersonLike, ActionType, bool, bool, params ActionArgument[])
nameWithType: PersonAi.StartAutomatically(PersonLike, ActionType, bool) nameWithType: PersonAi.StartAutomatically(PersonLike, ActionType, bool, bool, params ActionArgument[])
fullName: TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionType, bool) fullName: TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionType, bool, bool, params TinyLife.Actions.ActionArgument[])
type: Method type: Method
source: source:
remote: remote:
@ -69,7 +69,7 @@ items:
summary: Causes a person to start the given action automatically with the same behavior that it would have if started by the <xref href="TinyLife.Objects.PersonAi" data-throw-if-not-resolved="false"></xref> summary: Causes a person to start the given action automatically with the same behavior that it would have if started by the <xref href="TinyLife.Objects.PersonAi" data-throw-if-not-resolved="false"></xref>
example: [] example: []
syntax: syntax:
content: public static bool StartAutomatically(PersonLike person, ActionType type, bool priority = false) content: public static bool StartAutomatically(PersonLike person, ActionType type, bool priority = false, bool force = false, params ActionArgument[] chosenArguments)
parameters: parameters:
- id: person - id: person
type: TinyLife.Objects.PersonLike type: TinyLife.Objects.PersonLike
@ -80,14 +80,18 @@ items:
- id: priority - id: priority
type: System.Boolean type: System.Boolean
description: Whether to add this action to the start of the action queue rather than the end description: Whether to add this action to the start of the action queue rather than the end
- id: force
type: System.Boolean
- id: chosenArguments
type: TinyLife.Actions.ActionArgument[]
return: return:
type: System.Boolean type: System.Boolean
description: Whether the action was successfully started description: Whether the action was successfully started
content.vb: Public Shared Function StartAutomatically(person As PersonLike, type As ActionType, priority As Boolean = False) As Boolean content.vb: Public Shared Function StartAutomatically(person As PersonLike, type As ActionType, priority As Boolean = False, force As Boolean = False, ParamArray chosenArguments As ActionArgument()) As Boolean
overload: TinyLife.Objects.PersonAi.StartAutomatically* overload: TinyLife.Objects.PersonAi.StartAutomatically*
nameWithType.vb: PersonAi.StartAutomatically(PersonLike, ActionType, Boolean) nameWithType.vb: PersonAi.StartAutomatically(PersonLike, ActionType, Boolean, Boolean, ParamArray ActionArgument())
fullName.vb: TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionType, Boolean) fullName.vb: TinyLife.Objects.PersonAi.StartAutomatically(TinyLife.Objects.PersonLike, TinyLife.Actions.ActionType, Boolean, Boolean, ParamArray TinyLife.Actions.ActionArgument())
name.vb: StartAutomatically(PersonLike, ActionType, Boolean) name.vb: StartAutomatically(PersonLike, ActionType, Boolean, Boolean, ParamArray ActionArgument())
references: references:
- uid: TinyLife.Objects.PersonLike - uid: TinyLife.Objects.PersonLike
commentId: T:TinyLife.Objects.PersonLike commentId: T:TinyLife.Objects.PersonLike
@ -509,7 +513,7 @@ references:
fullName: TinyLife.Objects.PersonAi fullName: TinyLife.Objects.PersonAi
- uid: TinyLife.Objects.PersonAi.StartAutomatically* - uid: TinyLife.Objects.PersonAi.StartAutomatically*
commentId: Overload:TinyLife.Objects.PersonAi.StartAutomatically commentId: Overload:TinyLife.Objects.PersonAi.StartAutomatically
href: TinyLife.Objects.PersonAi.html#TinyLife_Objects_PersonAi_StartAutomatically_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionType_System_Boolean_ href: TinyLife.Objects.PersonAi.html#TinyLife_Objects_PersonAi_StartAutomatically_TinyLife_Objects_PersonLike_TinyLife_Actions_ActionType_System_Boolean_System_Boolean_TinyLife_Actions_ActionArgument___
name: StartAutomatically name: StartAutomatically
nameWithType: PersonAi.StartAutomatically nameWithType: PersonAi.StartAutomatically
fullName: TinyLife.Objects.PersonAi.StartAutomatically fullName: TinyLife.Objects.PersonAi.StartAutomatically
@ -531,3 +535,24 @@ references:
nameWithType.vb: Boolean nameWithType.vb: Boolean
fullName.vb: Boolean fullName.vb: Boolean
name.vb: Boolean name.vb: Boolean
- uid: TinyLife.Actions.ActionArgument[]
isExternal: true
href: TinyLife.Actions.ActionArgument.html
name: ActionArgument[]
nameWithType: ActionArgument[]
fullName: TinyLife.Actions.ActionArgument[]
nameWithType.vb: ActionArgument()
fullName.vb: TinyLife.Actions.ActionArgument()
name.vb: ActionArgument()
spec.csharp:
- uid: TinyLife.Actions.ActionArgument
name: ActionArgument
href: TinyLife.Actions.ActionArgument.html
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.Actions.ActionArgument
name: ActionArgument
href: TinyLife.Actions.ActionArgument.html
- name: (
- name: )

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddEmotionDelegate id: AddEmotionDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3331 startLine: 3319
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AiPriorityForObjectDelegate id: AiPriorityForObjectDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3311 startLine: 3299
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EfficiencyModifierDelegate id: EfficiencyModifierDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3291 startLine: 3279
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EmotionModifiersChangedDelegate id: EmotionModifiersChangedDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3321 startLine: 3309
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PassiveActionPriorityDelegate id: PassiveActionPriorityDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3306 startLine: 3294
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PassiveReductionDelegate id: PassiveReductionDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3336 startLine: 3324
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RelationshipChangeDelegate id: RelationshipChangeDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3326 startLine: 3314
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RestoreNeedDelegate id: RestoreNeedDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3316 startLine: 3304
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SkillBoostDelegate id: SkillBoostDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3296 startLine: 3284
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WalkSpeedDelegate id: WalkSpeedDelegate
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3301 startLine: 3289
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -40,7 +40,7 @@ items:
- TinyLife.Objects.PersonLike.DrawLooks(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,System.Nullable{Microsoft.Xna.Framework.Color},System.Single) - TinyLife.Objects.PersonLike.DrawLooks(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,System.Nullable{Microsoft.Xna.Framework.Color},System.Single)
- TinyLife.Objects.PersonLike.DrawLooksLayer(Microsoft.Xna.Framework.Graphics.SpriteBatch,MLEM.Animations.SpriteAnimation,MLEM.Textures.TextureRegion,TinyLife.Objects.WornClothes,System.Int32,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,Microsoft.Xna.Framework.Color,System.Single,System.Single) - TinyLife.Objects.PersonLike.DrawLooksLayer(Microsoft.Xna.Framework.Graphics.SpriteBatch,MLEM.Animations.SpriteAnimation,MLEM.Textures.TextureRegion,TinyLife.Objects.WornClothes,System.Int32,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Single,TinyLife.Objects.ParentInfo,Microsoft.Xna.Framework.Color,System.Single,System.Single)
- TinyLife.Objects.PersonLike.DrawSize - TinyLife.Objects.PersonLike.DrawSize
- TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) - TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
- TinyLife.Objects.PersonLike.EarnMoney(System.Single,System.Object) - TinyLife.Objects.PersonLike.EarnMoney(System.Single,System.Object)
- TinyLife.Objects.PersonLike.Emotion - TinyLife.Objects.PersonLike.Emotion
- TinyLife.Objects.PersonLike.EmotionAmount - TinyLife.Objects.PersonLike.EmotionAmount
@ -192,7 +192,6 @@ items:
- TinyLife.Objects.PersonLike.UpdateAction(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Collections.Generic.IEnumerable{TinyLife.Goals.IGoalTriggerable}) - TinyLife.Objects.PersonLike.UpdateAction(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Collections.Generic.IEnumerable{TinyLife.Goals.IGoalTriggerable})
- TinyLife.Objects.PersonLike.UpdateAnimations(System.TimeSpan,System.Single) - TinyLife.Objects.PersonLike.UpdateAnimations(System.TimeSpan,System.Single)
- TinyLife.Objects.PersonLike.Validate - TinyLife.Objects.PersonLike.Validate
- TinyLife.Objects.PersonLike.ValidateClothes
- TinyLife.Objects.PersonLike.VisitLot(TinyLife.World.Lot) - TinyLife.Objects.PersonLike.VisitLot(TinyLife.World.Lot)
- TinyLife.Objects.PersonLike.VisitingLot - TinyLife.Objects.PersonLike.VisitingLot
- TinyLife.Objects.PersonLike.VisualPosition - TinyLife.Objects.PersonLike.VisualPosition
@ -3556,16 +3555,16 @@ items:
nameWithType.vb: PersonLike.New(Map, Vector2, Single) nameWithType.vb: PersonLike.New(Map, Vector2, Single)
fullName.vb: TinyLife.Objects.PersonLike.New(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, Single) fullName.vb: TinyLife.Objects.PersonLike.New(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, Single)
name.vb: New(Map, Vector2, Single) name.vb: New(Map, Vector2, Single)
- uid: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) - uid: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
commentId: M:TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) commentId: M:TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
id: DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup},System.Nullable{TinyLife.Objects.LifeSpan}) id: DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,MLEM.Misc.Direction2,TinyLife.Objects.Outfit,System.Nullable{TinyLife.Objects.Pose},System.Nullable{TinyLife.Objects.AgeGroup})
parent: TinyLife.Objects.PersonLike parent: TinyLife.Objects.PersonLike
langs: langs:
- csharp - csharp
- vb - vb
name: DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) name: DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?)
nameWithType: PersonLike.DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) nameWithType: PersonLike.DrawUi(SpriteBatch, Vector2, float, Direction2, Outfit, Pose?, AgeGroup?)
fullName: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, float, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?, TinyLife.Objects.LifeSpan?) fullName: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, float, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?)
type: Method type: Method
source: source:
remote: remote:
@ -3581,7 +3580,7 @@ items:
summary: Renders this person on a ui level rather than a world level summary: Renders this person on a ui level rather than a world level
example: [] example: []
syntax: syntax:
content: public abstract void DrawUi(SpriteBatch batch, Vector2 pos, float scale, Direction2 rotation = Direction2.Right, Outfit outfit = null, Pose? pose = null, AgeGroup? age = null, LifeSpan? lifeSpan = null) content: public abstract void DrawUi(SpriteBatch batch, Vector2 pos, float scale, Direction2 rotation = Direction2.Right, Outfit outfit = null, Pose? pose = null, AgeGroup? age = null)
parameters: parameters:
- id: batch - id: batch
type: Microsoft.Xna.Framework.Graphics.SpriteBatch type: Microsoft.Xna.Framework.Graphics.SpriteBatch
@ -3601,13 +3600,11 @@ items:
type: System.Nullable{TinyLife.Objects.Pose} type: System.Nullable{TinyLife.Objects.Pose}
- id: age - id: age
type: System.Nullable{TinyLife.Objects.AgeGroup} type: System.Nullable{TinyLife.Objects.AgeGroup}
- id: lifeSpan content.vb: Public MustOverride Sub DrawUi(batch As SpriteBatch, pos As Vector2, scale As Single, rotation As Direction2 = Direction2.Right, outfit As Outfit = Nothing, pose As Pose? = Nothing, age As AgeGroup? = Nothing)
type: System.Nullable{TinyLife.Objects.LifeSpan}
content.vb: Public MustOverride Sub DrawUi(batch As SpriteBatch, pos As Vector2, scale As Single, rotation As Direction2 = Direction2.Right, outfit As Outfit = Nothing, pose As Pose? = Nothing, age As AgeGroup? = Nothing, lifeSpan As LifeSpan? = Nothing)
overload: TinyLife.Objects.PersonLike.DrawUi* overload: TinyLife.Objects.PersonLike.DrawUi*
nameWithType.vb: PersonLike.DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) nameWithType.vb: PersonLike.DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?)
fullName.vb: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Single, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?, TinyLife.Objects.LifeSpan?) fullName.vb: TinyLife.Objects.PersonLike.DrawUi(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Single, MLEM.Misc.Direction2, TinyLife.Objects.Outfit, TinyLife.Objects.Pose?, TinyLife.Objects.AgeGroup?)
name.vb: DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?, LifeSpan?) name.vb: DrawUi(SpriteBatch, Vector2, Single, Direction2, Outfit, Pose?, AgeGroup?)
- uid: TinyLife.Objects.PersonLike.GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point) - uid: TinyLife.Objects.PersonLike.GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.Objects.PersonLike.GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point) commentId: M:TinyLife.Objects.PersonLike.GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point)
id: GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point) id: GenerateAnimationGroup(TinyLife.Objects.ClothesLayer,System.Int32,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point)
@ -3806,7 +3803,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetCategories id: GetCategories
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1076 startLine: 1105
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -3842,7 +3839,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Intersects id: Intersects
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1081 startLine: 1110
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -3881,7 +3878,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHoverInfo id: GetHoverInfo
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1086 startLine: 1115
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -3917,7 +3914,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetDebugLines id: GetDebugLines
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1101 startLine: 1130
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -3959,7 +3956,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetFreeActionSpotInfos id: GetFreeActionSpotInfos
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1121 startLine: 1150
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -3994,7 +3991,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnCameraRotationChanged id: OnCameraRotationChanged
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1135 startLine: 1164
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4033,7 +4030,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FocusCameraOnEvent id: FocusCameraOnEvent
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1146 startLine: 1175
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4076,7 +4073,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ResetToStatic id: ResetToStatic
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1162 startLine: 1191
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4118,7 +4115,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MoveToMap id: MoveToMap
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1217 startLine: 1246
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4163,7 +4160,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PrepareForPermanentRemoval id: PrepareForPermanentRemoval
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1235 startLine: 1264
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4194,7 +4191,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VisitLot id: VisitLot
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1249 startLine: 1278
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4229,7 +4226,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRelationship id: GetRelationship
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1267 startLine: 1296
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4273,7 +4270,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChangeFriendship id: ChangeFriendship
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1293 startLine: 1322
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4317,7 +4314,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChangeRomance id: ChangeRomance
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1350 startLine: 1379
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4361,7 +4358,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisplayEmote id: DisplayEmote
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1389 startLine: 1418
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4405,7 +4402,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StopEmoting id: StopEmoting
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1400 startLine: 1429
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4433,7 +4430,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Speak id: Speak
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1411 startLine: 1440
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4474,7 +4471,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StopSpeaking id: StopSpeaking
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1421 startLine: 1450
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4502,7 +4499,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisplayEmoteAndSpeak id: DisplayEmoteAndSpeak
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1438 startLine: 1467
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4549,7 +4546,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetFreeTalkingSpots id: GetFreeTalkingSpots
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1448 startLine: 1477
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4583,7 +4580,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OccupyActionSpot id: OccupyActionSpot
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1468 startLine: 1497
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4637,7 +4634,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OccupyFreeActionSpot id: OccupyFreeActionSpot
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1499 startLine: 1528
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4690,7 +4687,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OccupyFreeActionSpot id: OccupyFreeActionSpot
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1517 startLine: 1546
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4743,7 +4740,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsCloseForTalking id: IsCloseForTalking
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1529 startLine: 1558
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4787,7 +4784,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetNeed id: GetNeed
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1541 startLine: 1570
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4822,7 +4819,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetNeedPercentage id: GetNeedPercentage
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1550 startLine: 1579
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4857,7 +4854,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RestoreNeed id: RestoreNeed
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1562 startLine: 1591
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4904,7 +4901,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RestoreNeed id: RestoreNeed
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1598 startLine: 1627
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -4956,7 +4953,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetSkill id: GetSkill
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1609 startLine: 1638
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5000,7 +4997,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetSkillTotalPercentage id: GetSkillTotalPercentage
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1628 startLine: 1657
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5038,7 +5035,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetSkillPointPercentage id: GetSkillPointPercentage
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1638 startLine: 1667
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5076,7 +5073,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetSkillLevel id: GetSkillLevel
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1648 startLine: 1677
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5114,7 +5111,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HasSkillLevel id: HasSkillLevel
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1658 startLine: 1687
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5155,7 +5152,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GainSkill id: GainSkill
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1670 startLine: 1699
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5204,7 +5201,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DepleteNeed id: DepleteNeed
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1694 startLine: 1723
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5248,7 +5245,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HasPersonality id: HasPersonality
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1705 startLine: 1734
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5283,7 +5280,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EnqueueAction id: EnqueueAction
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1719 startLine: 1748
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5338,7 +5335,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CancelAction id: CancelAction
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1739 startLine: 1768
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5385,7 +5382,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHeldObject id: GetHeldObject
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1755 startLine: 1784
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5428,7 +5425,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetHeldObject id: SetHeldObject
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1773 startLine: 1802
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5481,7 +5478,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetHeldObject id: SetHeldObject
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1786 startLine: 1815
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5522,7 +5519,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveHeldObject id: RemoveHeldObject
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1799 startLine: 1828
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5559,7 +5556,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHeldActionInfo id: GetHeldActionInfo
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1813 startLine: 1842
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5593,7 +5590,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ToCreatedByString id: ToCreatedByString
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1822 startLine: 1851
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5624,7 +5621,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Die id: Die
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1830 startLine: 1859
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5658,7 +5655,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddEmotion id: AddEmotion
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1931 startLine: 1960
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5708,7 +5705,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveEmotion id: RemoveEmotion
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 1980 startLine: 2009
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5743,7 +5740,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LowerEmotion id: LowerEmotion
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2001 startLine: 2030
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5790,7 +5787,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LowerEmotionModifier id: LowerEmotionModifier
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2020 startLine: 2049
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5837,7 +5834,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HasEmotionModifier id: HasEmotionModifier
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2036 startLine: 2065
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5872,7 +5869,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetCausedEmotion id: GetCausedEmotion
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2046 startLine: 2075
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5910,7 +5907,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetWalkSpeed id: GetWalkSpeed
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2061 startLine: 2090
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5944,7 +5941,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetEfficiencyModifier id: GetEfficiencyModifier
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2096 startLine: 2125
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -5994,7 +5991,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HasHouseholdMember id: HasHouseholdMember
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2144 startLine: 2173
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6029,7 +6026,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HasHouseholdMember id: HasHouseholdMember
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2149 startLine: 2178
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6064,7 +6061,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPassiveActionPriority id: GetPassiveActionPriority
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2160 startLine: 2189
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6104,7 +6101,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetAiPriorityForObject id: GetAiPriorityForObject
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2184 startLine: 2213
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6145,7 +6142,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRandomOutfit id: GetRandomOutfit
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2195 startLine: 2224
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6180,7 +6177,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetCurrentOutfit id: SetCurrentOutfit
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2207 startLine: 2236
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6220,7 +6217,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetCurrentOutfit id: SetCurrentOutfit
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2223 startLine: 2252
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6258,7 +6255,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetNewId id: SetNewId
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2238 startLine: 2267
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6302,7 +6299,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsIdMatch id: IsIdMatch
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2293 startLine: 2322
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6340,7 +6337,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsIdMatch id: IsIdMatch
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2303 startLine: 2332
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6378,7 +6375,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FaceObject id: FaceObject
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2312 startLine: 2341
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6417,7 +6414,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPersonalitySkillBoost id: GetPersonalitySkillBoost
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2336 startLine: 2365
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6455,7 +6452,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetEmotionSkillBoost id: GetEmotionSkillBoost
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2358 startLine: 2387
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6493,7 +6490,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetCurrentGoals id: GetCurrentGoals
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2382 startLine: 2411
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6527,7 +6524,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EarnMoney id: EarnMoney
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2403 startLine: 2432
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6568,7 +6565,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddMemory id: AddMemory
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2416 startLine: 2445
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6617,7 +6614,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetMemories id: GetMemories
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2428 startLine: 2457
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6657,7 +6654,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetMemories id: GetMemories
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2437 startLine: 2466
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6698,7 +6695,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveMemory id: RemoveMemory
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2448 startLine: 2477
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6744,7 +6741,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetTimeSinceMemory id: GetTimeSinceMemory
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2476 startLine: 2505
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6790,7 +6787,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetTimeSinceMemory id: GetTimeSinceMemory
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2495 startLine: 2524
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6833,7 +6830,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GoToExitRoad id: GoToExitRoad
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2508 startLine: 2537
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6864,7 +6861,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetAction id: GetAction
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2522 startLine: 2551
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6908,7 +6905,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetPregnancyStatus id: SetPregnancyStatus
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2542 startLine: 2571
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6949,7 +6946,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetAnimationsFromLooks id: SetAnimationsFromLooks
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2562 startLine: 2591
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -6977,7 +6974,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ImportAtExitRoad id: ImportAtExitRoad
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2574 startLine: 2603
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7009,7 +7006,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GoToRandomHomeLocation id: GoToRandomHomeLocation
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2586 startLine: 2615
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7040,7 +7037,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ShouldDrawHeldItem id: ShouldDrawHeldItem
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2608 startLine: 2637
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7071,7 +7068,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHeldItemDrawOffset id: GetHeldItemDrawOffset
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2619 startLine: 2648
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7108,7 +7105,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHeldItemDepthOffset id: GetHeldItemDepthOffset
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2627 startLine: 2656
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7139,7 +7136,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPivot id: GetPivot
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2638 startLine: 2667
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7170,7 +7167,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanExecuteAction id: CanExecuteAction
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2650 startLine: 2679
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7217,7 +7214,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetValidClothes id: GetValidClothes
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2712 startLine: 2741
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7252,7 +7249,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanApplyPersonality id: CanApplyPersonality
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2724 startLine: 2753
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7289,7 +7286,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HasRecentlyFailed id: HasRecentlyFailed
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2741 startLine: 2770
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7333,7 +7330,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanTakeOff id: CanTakeOff
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2750 startLine: 2779
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7368,7 +7365,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MoveToMapExitRoad id: MoveToMapExitRoad
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2761 startLine: 2790
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7406,7 +7403,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DrawLooks id: DrawLooks
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2780 startLine: 2809
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7459,7 +7456,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DrawLooksLayer id: DrawLooksLayer
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2799 startLine: 2828
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7513,7 +7510,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnRoomCheck id: OnRoomCheck
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2808 startLine: 2837
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7544,7 +7541,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateAnimations id: UpdateAnimations
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2836 startLine: 2865
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7582,7 +7579,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnActionCompleted id: OnActionCompleted
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2855 startLine: 2884
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7620,7 +7617,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateAction id: UpdateAction
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2932 startLine: 2961
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7667,7 +7664,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InitializeAction id: InitializeAction
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2945 startLine: 2974
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7699,7 +7696,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnAgeChanged id: OnAgeChanged
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 2955 startLine: 2984
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7713,37 +7710,6 @@ items:
description: This person's previous age. description: This person's previous age.
content.vb: Protected Overridable Sub OnAgeChanged(lastAge As AgeGroup) content.vb: Protected Overridable Sub OnAgeChanged(lastAge As AgeGroup)
overload: TinyLife.Objects.PersonLike.OnAgeChanged* overload: TinyLife.Objects.PersonLike.OnAgeChanged*
- uid: TinyLife.Objects.PersonLike.ValidateClothes
commentId: M:TinyLife.Objects.PersonLike.ValidateClothes
id: ValidateClothes
parent: TinyLife.Objects.PersonLike
langs:
- csharp
- vb
name: ValidateClothes()
nameWithType: PersonLike.ValidateClothes()
fullName: TinyLife.Objects.PersonLike.ValidateClothes()
type: Method
source:
remote:
path: TinyLife/Objects/PersonLike.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ValidateClothes
path: ../TinyLife/Objects/PersonLike.cs
startLine: 3021
assemblies:
- Tiny Life
namespace: TinyLife.Objects
summary: >-
Validates this person's current <xref href="TinyLife.Objects.PersonLike.Outfits" data-throw-if-not-resolved="false"></xref>, removing any invalid ones and adding clothes to layers that require them.
This method is called automatically in <xref href="TinyLife.Objects.PersonLike.Validate" data-throw-if-not-resolved="false"></xref>, as well as when a <xref href="TinyLife.Objects.PersonLike.Household" data-throw-if-not-resolved="false"></xref> preview is loaded.
example: []
syntax:
content: public virtual void ValidateClothes()
content.vb: Public Overridable Sub ValidateClothes()
overload: TinyLife.Objects.PersonLike.ValidateClothes*
- uid: TinyLife.Objects.PersonLike.GetPassiveNeedReduction(TinyLife.NeedType) - uid: TinyLife.Objects.PersonLike.GetPassiveNeedReduction(TinyLife.NeedType)
commentId: M:TinyLife.Objects.PersonLike.GetPassiveNeedReduction(TinyLife.NeedType) commentId: M:TinyLife.Objects.PersonLike.GetPassiveNeedReduction(TinyLife.NeedType)
id: GetPassiveNeedReduction(TinyLife.NeedType) id: GetPassiveNeedReduction(TinyLife.NeedType)
@ -7762,7 +7728,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPassiveNeedReduction id: GetPassiveNeedReduction
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3058 startLine: 3052
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -7800,7 +7766,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRandomSpeakSound id: GetRandomSpeakSound
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3231 startLine: 3219
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -15027,7 +14993,7 @@ references:
fullName: MLEM.Misc.Direction2.Right fullName: MLEM.Misc.Direction2.Right
- uid: TinyLife.Objects.PersonLike.DrawUi* - uid: TinyLife.Objects.PersonLike.DrawUi*
commentId: Overload:TinyLife.Objects.PersonLike.DrawUi commentId: Overload:TinyLife.Objects.PersonLike.DrawUi
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__System_Nullable_TinyLife_Objects_LifeSpan__ href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DrawUi_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_System_Single_MLEM_Misc_Direction2_TinyLife_Objects_Outfit_System_Nullable_TinyLife_Objects_Pose__System_Nullable_TinyLife_Objects_AgeGroup__
name: DrawUi name: DrawUi
nameWithType: PersonLike.DrawUi nameWithType: PersonLike.DrawUi
fullName: TinyLife.Objects.PersonLike.DrawUi fullName: TinyLife.Objects.PersonLike.DrawUi
@ -15074,24 +15040,6 @@ references:
name: AgeGroup name: AgeGroup
href: TinyLife.Objects.AgeGroup.html href: TinyLife.Objects.AgeGroup.html
- name: '?' - name: '?'
- uid: System.Nullable{TinyLife.Objects.LifeSpan}
commentId: T:System.Nullable{TinyLife.Objects.LifeSpan}
parent: System
definition: System.Nullable`1
href: TinyLife.Objects.LifeSpan.html
name: LifeSpan?
nameWithType: LifeSpan?
fullName: TinyLife.Objects.LifeSpan?
spec.csharp:
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
href: TinyLife.Objects.LifeSpan.html
- name: '?'
spec.vb:
- uid: TinyLife.Objects.LifeSpan
name: LifeSpan
href: TinyLife.Objects.LifeSpan.html
- name: '?'
- uid: MLEM.Animations.SpriteAnimationGroup - uid: MLEM.Animations.SpriteAnimationGroup
commentId: T:MLEM.Animations.SpriteAnimationGroup commentId: T:MLEM.Animations.SpriteAnimationGroup
parent: MLEM.Animations parent: MLEM.Animations
@ -18323,31 +18271,6 @@ references:
name: OnAgeChanged name: OnAgeChanged
nameWithType: PersonLike.OnAgeChanged nameWithType: PersonLike.OnAgeChanged
fullName: TinyLife.Objects.PersonLike.OnAgeChanged fullName: TinyLife.Objects.PersonLike.OnAgeChanged
- uid: TinyLife.Objects.PersonLike.Validate
commentId: M:TinyLife.Objects.PersonLike.Validate
parent: TinyLife.Objects.PersonLike
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_Validate
name: Validate()
nameWithType: PersonLike.Validate()
fullName: TinyLife.Objects.PersonLike.Validate()
spec.csharp:
- uid: TinyLife.Objects.PersonLike.Validate
name: Validate
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_Validate
- name: (
- name: )
spec.vb:
- uid: TinyLife.Objects.PersonLike.Validate
name: Validate
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_Validate
- name: (
- name: )
- uid: TinyLife.Objects.PersonLike.ValidateClothes*
commentId: Overload:TinyLife.Objects.PersonLike.ValidateClothes
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_ValidateClothes
name: ValidateClothes
nameWithType: PersonLike.ValidateClothes
fullName: TinyLife.Objects.PersonLike.ValidateClothes
- uid: TinyLife.NeedType.PassiveReduction - uid: TinyLife.NeedType.PassiveReduction
commentId: F:TinyLife.NeedType.PassiveReduction commentId: F:TinyLife.NeedType.PassiveReduction
href: TinyLife.NeedType.html#TinyLife_NeedType_PassiveReduction href: TinyLife.NeedType.html#TinyLife_NeedType_PassiveReduction

View file

@ -30,7 +30,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Pose id: Pose
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3388 startLine: 3376
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -60,7 +60,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Standing id: Standing
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3393 startLine: 3381
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -88,7 +88,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Walking id: Walking
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3397 startLine: 3385
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -116,7 +116,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Sitting id: Sitting
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3401 startLine: 3389
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -144,7 +144,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Laying id: Laying
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3406 startLine: 3394
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -175,7 +175,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SittingGround id: SittingGround
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3411 startLine: 3399
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -206,7 +206,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WorkingStanding id: WorkingStanding
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3415 startLine: 3403
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -234,7 +234,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WorkingSitting id: WorkingSitting
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3419 startLine: 3407
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -262,7 +262,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WorkingSittingGround id: WorkingSittingGround
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3423 startLine: 3411
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -290,7 +290,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Running id: Running
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3427 startLine: 3415
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -318,7 +318,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StandingArmsOut id: StandingArmsOut
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3431 startLine: 3419
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -346,7 +346,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WalkingArmsOut id: WalkingArmsOut
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3435 startLine: 3423
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -22,7 +22,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PregnancyAbility id: PregnancyAbility
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3564 startLine: 3552
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -52,7 +52,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Neither id: Neither
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3569 startLine: 3557
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -80,7 +80,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetOthersPregnant id: GetOthersPregnant
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3573 startLine: 3561
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -108,7 +108,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPregnant id: GetPregnant
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3577 startLine: 3565
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -35,7 +35,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SpeakStyle id: SpeakStyle
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3519 startLine: 3507
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -79,7 +79,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Affirmative id: Affirmative
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3523 startLine: 3511
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -105,7 +105,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Angry id: Angry
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3524 startLine: 3512
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -131,7 +131,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Annoyed id: Annoyed
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3525 startLine: 3513
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -157,7 +157,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Bored id: Bored
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3526 startLine: 3514
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -183,7 +183,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Childish id: Childish
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3527 startLine: 3515
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -209,7 +209,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Confident id: Confident
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3528 startLine: 3516
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -235,7 +235,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Confused id: Confused
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3529 startLine: 3517
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -261,7 +261,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Disagreeing id: Disagreeing
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3530 startLine: 3518
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -287,7 +287,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Excited id: Excited
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3531 startLine: 3519
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -313,7 +313,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Happy id: Happy
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3532 startLine: 3520
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -339,7 +339,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Neutral id: Neutral
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3533 startLine: 3521
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -365,7 +365,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Questioning id: Questioning
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3534 startLine: 3522
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -391,7 +391,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Sad id: Sad
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3535 startLine: 3523
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -417,7 +417,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Scared id: Scared
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3536 startLine: 3524
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -443,7 +443,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Shocked id: Shocked
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3537 startLine: 3525
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -469,7 +469,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Thinking id: Thinking
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3538 startLine: 3526
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -23,7 +23,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Visibility id: Visibility
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 854 startLine: 855
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -52,7 +52,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WhenVisible id: WhenVisible
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 859 startLine: 860
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -80,7 +80,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WhenVisibleExt id: WhenVisibleExt
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 863 startLine: 864
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -108,7 +108,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HideZoomedOut id: HideZoomedOut
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 867 startLine: 868
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -136,7 +136,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Static id: Static
path: ../TinyLife/Objects/MapObject.cs path: ../TinyLife/Objects/MapObject.cs
startLine: 872 startLine: 873
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -24,7 +24,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VoiceStyle id: VoiceStyle
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3547 startLine: 3535
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -57,7 +57,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Low id: Low
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3550 startLine: 3538
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -83,7 +83,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: High id: High
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3551 startLine: 3539
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -109,7 +109,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Child id: Child
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3552 startLine: 3540
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -135,7 +135,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Baby id: Baby
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3554 startLine: 3542
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects
@ -161,7 +161,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MidHigh id: MidHigh
path: ../TinyLife/Objects/PersonLike.cs path: ../TinyLife/Objects/PersonLike.cs
startLine: 3556 startLine: 3544
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Objects namespace: TinyLife.Objects

View file

@ -22,7 +22,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MapInfo id: MapInfo
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 585 startLine: 588
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -71,7 +71,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Name id: Name
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 590 startLine: 593
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -100,7 +100,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Custom id: Custom
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 594 startLine: 597
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -129,7 +129,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 601 startLine: 604
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife

View file

@ -15,6 +15,7 @@ items:
- TinyLife.PerSaveOptions.Instance - TinyLife.PerSaveOptions.Instance
- TinyLife.PerSaveOptions.LastGameVersion - TinyLife.PerSaveOptions.LastGameVersion
- TinyLife.PerSaveOptions.LastMap - TinyLife.PerSaveOptions.LastMap
- TinyLife.PerSaveOptions.LastPlayedLot
- TinyLife.PerSaveOptions.Load(System.String,System.Boolean) - TinyLife.PerSaveOptions.Load(System.String,System.Boolean)
- TinyLife.PerSaveOptions.LoadedMods - TinyLife.PerSaveOptions.LoadedMods
- TinyLife.PerSaveOptions.MapCustom - TinyLife.PerSaveOptions.MapCustom
@ -171,11 +172,14 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Maps id: Maps
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 448 startLine: 449
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
summary: The maps that this save contains. summary: >-
The maps that this save contains.
Do not change this value, or the save will likely be corrupted. Instead, use <xref href="TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo%2cSystem.Action)" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)" data-throw-if-not-resolved="false"></xref>.
example: [] example: []
syntax: syntax:
content: >- content: >-
@ -210,7 +214,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisableAiSelected id: DisableAiSelected
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 454 startLine: 455
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -249,7 +253,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisableAiHousehold id: DisableAiHousehold
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 459 startLine: 460
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -288,7 +292,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AiImportantActions id: AiImportantActions
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 465 startLine: 466
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -330,7 +334,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AiSkillBuilding id: AiSkillBuilding
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 471 startLine: 472
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -372,7 +376,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AiRelationships id: AiRelationships
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 477 startLine: 478
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -414,7 +418,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MaxRegularVisitors id: MaxRegularVisitors
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 483 startLine: 484
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -456,7 +460,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LoadedMods id: LoadedMods
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 489 startLine: 490
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -498,7 +502,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MapName id: MapName
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 495 startLine: 496
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -549,7 +553,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MapCustom id: MapCustom
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 501 startLine: 502
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -600,7 +604,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PlayedLifespan id: PlayedLifespan
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 507 startLine: 508
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -642,7 +646,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OtherLifespan id: OtherLifespan
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 513 startLine: 514
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -684,7 +688,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LastGameVersion id: LastGameVersion
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 518 startLine: 519
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -723,7 +727,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LastMap id: LastMap
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 523 startLine: 524
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -744,6 +748,43 @@ items:
- type: System.Runtime.Serialization.DataMemberAttribute - type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: [] arguments: []
- uid: TinyLife.PerSaveOptions.LastPlayedLot
commentId: F:TinyLife.PerSaveOptions.LastPlayedLot
id: LastPlayedLot
parent: TinyLife.PerSaveOptions
langs:
- csharp
- vb
name: LastPlayedLot
nameWithType: PerSaveOptions.LastPlayedLot
fullName: TinyLife.PerSaveOptions.LastPlayedLot
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LastPlayedLot
path: ../TinyLife/Options.cs
startLine: 526
assemblies:
- Tiny Life
namespace: TinyLife
syntax:
content: >-
[DataMember]
public Guid LastPlayedLot
return:
type: System.Guid
content.vb: >-
<DataMember>
Public LastPlayedLot As Guid
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.PerSaveOptions.PopulateLots - uid: TinyLife.PerSaveOptions.PopulateLots
commentId: F:TinyLife.PerSaveOptions.PopulateLots commentId: F:TinyLife.PerSaveOptions.PopulateLots
id: PopulateLots id: PopulateLots
@ -762,7 +803,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PopulateLots id: PopulateLots
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 528 startLine: 531
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -801,7 +842,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Difficulty id: Difficulty
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 534 startLine: 537
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -843,7 +884,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Save id: Save
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 539 startLine: 542
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -877,7 +918,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Load id: Load
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 547 startLine: 550
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -1708,6 +1749,67 @@ references:
name: Generic name: Generic
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic href: https://learn.microsoft.com/dotnet/api/system.collections.generic
- uid: TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo,System.Action)
commentId: M:TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo,System.Action)
isExternal: true
href: TinyLife.GameImpl.html#TinyLife_GameImpl_AddMapToSave_TinyLife_PerSaveOptions_MapInfo_System_Action_
name: AddMapToSave(MapInfo, Action)
nameWithType: GameImpl.AddMapToSave(PerSaveOptions.MapInfo, Action)
fullName: TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo, System.Action)
spec.csharp:
- uid: TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo,System.Action)
name: AddMapToSave
href: TinyLife.GameImpl.html#TinyLife_GameImpl_AddMapToSave_TinyLife_PerSaveOptions_MapInfo_System_Action_
- name: (
- uid: TinyLife.PerSaveOptions.MapInfo
name: MapInfo
href: TinyLife.PerSaveOptions.MapInfo.html
- name: ','
- name: " "
- uid: System.Action
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action
- name: )
spec.vb:
- uid: TinyLife.GameImpl.AddMapToSave(TinyLife.PerSaveOptions.MapInfo,System.Action)
name: AddMapToSave
href: TinyLife.GameImpl.html#TinyLife_GameImpl_AddMapToSave_TinyLife_PerSaveOptions_MapInfo_System_Action_
- name: (
- uid: TinyLife.PerSaveOptions.MapInfo
name: MapInfo
href: TinyLife.PerSaveOptions.MapInfo.html
- name: ','
- name: " "
- uid: System.Action
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action
- name: )
- uid: TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
commentId: M:TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
href: TinyLife.GameImpl.html#TinyLife_GameImpl_RemoveMapFromSave_TinyLife_World_Map_
name: RemoveMapFromSave(Map)
nameWithType: GameImpl.RemoveMapFromSave(Map)
fullName: TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
spec.csharp:
- uid: TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
name: RemoveMapFromSave
href: TinyLife.GameImpl.html#TinyLife_GameImpl_RemoveMapFromSave_TinyLife_World_Map_
- name: (
- uid: TinyLife.World.Map
name: Map
href: TinyLife.World.Map.html
- name: )
spec.vb:
- uid: TinyLife.GameImpl.RemoveMapFromSave(TinyLife.World.Map)
name: RemoveMapFromSave
href: TinyLife.GameImpl.html#TinyLife_GameImpl_RemoveMapFromSave_TinyLife_World_Map_
- name: (
- uid: TinyLife.World.Map
name: Map
href: TinyLife.World.Map.html
- name: )
- uid: System.Collections.Generic.List{TinyLife.PerSaveOptions.MapInfo} - uid: System.Collections.Generic.List{TinyLife.PerSaveOptions.MapInfo}
commentId: T:System.Collections.Generic.List{TinyLife.PerSaveOptions.MapInfo} commentId: T:System.Collections.Generic.List{TinyLife.PerSaveOptions.MapInfo}
parent: System.Collections.Generic parent: System.Collections.Generic
@ -2227,6 +2329,14 @@ references:
name: Maps name: Maps
nameWithType: PerSaveOptions.Maps nameWithType: PerSaveOptions.Maps
fullName: TinyLife.PerSaveOptions.Maps fullName: TinyLife.PerSaveOptions.Maps
- uid: System.Guid
commentId: T:System.Guid
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.guid
name: Guid
nameWithType: Guid
fullName: System.Guid
- uid: TinyLife.World.Map.PopulateLots - uid: TinyLife.World.Map.PopulateLots
commentId: M:TinyLife.World.Map.PopulateLots commentId: M:TinyLife.World.Map.PopulateLots
href: TinyLife.World.Map.html#TinyLife_World_Map_PopulateLots href: TinyLife.World.Map.html#TinyLife_World_Map_PopulateLots

View file

@ -23,7 +23,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SaveData id: SaveData
path: ../TinyLife/SaveHandler.cs path: ../TinyLife/SaveHandler.cs
startLine: 387 startLine: 381
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -72,7 +72,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Maps id: Maps
path: ../TinyLife/SaveHandler.cs path: ../TinyLife/SaveHandler.cs
startLine: 392 startLine: 386
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -103,7 +103,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Time id: Time
path: ../TinyLife/SaveHandler.cs path: ../TinyLife/SaveHandler.cs
startLine: 396 startLine: 390
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -134,7 +134,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Achievements id: Achievements
path: ../TinyLife/SaveHandler.cs path: ../TinyLife/SaveHandler.cs
startLine: 401 startLine: 395
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -165,7 +165,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Map id: Map
path: ../TinyLife/SaveHandler.cs path: ../TinyLife/SaveHandler.cs
startLine: 407 startLine: 401
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife

View file

@ -24,7 +24,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Set id: Set
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1482 startLine: 1484
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -56,7 +56,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Woodworking id: Woodworking
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1488 startLine: 1490
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -84,7 +84,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Workout id: Workout
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1492 startLine: 1494
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -112,7 +112,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChildClothes id: ChildClothes
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1496 startLine: 1498
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -140,7 +140,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RetroFurniture id: RetroFurniture
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1500 startLine: 1502
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -168,7 +168,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ContemporaryComplements id: ContemporaryComplements
path: ../TinyLife/GameImpl.cs path: ../TinyLife/GameImpl.cs
startLine: 1504 startLine: 1506
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife

View file

@ -258,7 +258,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetMouseCursor id: GetMouseCursor
path: ../TinyLife/Tools/OpeningTool.cs path: ../TinyLife/Tools/OpeningTool.cs
startLine: 105 startLine: 107
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Tools namespace: TinyLife.Tools
@ -293,7 +293,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanPlaceForTooltip id: CanPlaceForTooltip
path: ../TinyLife/Tools/OpeningTool.cs path: ../TinyLife/Tools/OpeningTool.cs
startLine: 112 startLine: 114
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Tools namespace: TinyLife.Tools
@ -325,7 +325,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ShouldHighlightSelectedObject id: ShouldHighlightSelectedObject
path: ../TinyLife/Tools/OpeningTool.cs path: ../TinyLife/Tools/OpeningTool.cs
startLine: 121 startLine: 123
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Tools namespace: TinyLife.Tools

View file

@ -21,7 +21,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TransitionType id: TransitionType
path: ../TinyLife/Uis/Menus.cs path: ../TinyLife/Uis/Menus.cs
startLine: 1330 startLine: 1352
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Uis namespace: TinyLife.Uis
@ -50,7 +50,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Swipe id: Swipe
path: ../TinyLife/Uis/Menus.cs path: ../TinyLife/Uis/Menus.cs
startLine: 1336 startLine: 1358
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Uis namespace: TinyLife.Uis
@ -81,7 +81,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Fade id: Fade
path: ../TinyLife/Uis/Menus.cs path: ../TinyLife/Uis/Menus.cs
startLine: 1341 startLine: 1363
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Uis namespace: TinyLife.Uis

View file

@ -5,8 +5,8 @@ items:
id: Menus id: Menus
parent: TinyLife.Uis parent: TinyLife.Uis
children: children:
- TinyLife.Uis.Menus.CreateHouseholdPreview(System.String,TinyLife.Objects.LifeSpan,System.Boolean) - TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})
- TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean) - TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})
- TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor,System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons},Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Func{System.Boolean}) - TinyLife.Uis.Menus.GamepadHint(MLEM.Ui.Anchor,System.Func{TinyLife.Options,Microsoft.Xna.Framework.Input.Buttons},Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Vector2},System.Func{System.Boolean})
- TinyLife.Uis.Menus.MenuBackground(System.Single,System.Single,System.Single,System.Single) - TinyLife.Uis.Menus.MenuBackground(System.Single,System.Single,System.Single,System.Single)
- TinyLife.Uis.Menus.Transition(System.Action,System.Action,TinyLife.Uis.Menus.TransitionType,TinyLife.Uis.Menus.TransitionType,System.Single,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) - TinyLife.Uis.Menus.Transition(System.Action,System.Action,TinyLife.Uis.Menus.TransitionType,TinyLife.Uis.Menus.TransitionType,System.Single,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
@ -203,16 +203,16 @@ items:
nameWithType.vb: Menus.MenuBackground(Single, Single, Single, Single) nameWithType.vb: Menus.MenuBackground(Single, Single, Single, Single)
fullName.vb: TinyLife.Uis.Menus.MenuBackground(Single, Single, Single, Single) fullName.vb: TinyLife.Uis.Menus.MenuBackground(Single, Single, Single, Single)
name.vb: MenuBackground(Single, Single, Single, Single) name.vb: MenuBackground(Single, Single, Single, Single)
- uid: TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean) - uid: TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})
commentId: M:TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean) commentId: M:TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})
id: CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean) id: CreateLotPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedLot})
parent: TinyLife.Uis.Menus parent: TinyLife.Uis.Menus
langs: langs:
- csharp - csharp
- vb - vb
name: CreateLotPreview(Map, string, Point, float, Color, bool) name: CreateLotPreview(Map, string, Point, float, Color, bool, Func<string, ExportedLot>)
nameWithType: Menus.CreateLotPreview(Map, string, Point, float, Color, bool) nameWithType: Menus.CreateLotPreview(Map, string, Point, float, Color, bool, Func<string, ExportedLot>)
fullName: TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map, string, Microsoft.Xna.Framework.Point, float, Microsoft.Xna.Framework.Color, bool) fullName: TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map, string, Microsoft.Xna.Framework.Point, float, Microsoft.Xna.Framework.Color, bool, System.Func<string, TinyLife.World.ExportedLot>)
type: Method type: Method
source: source:
remote: remote:
@ -228,7 +228,7 @@ items:
summary: A helper method to create a <xref href="Microsoft.Xna.Framework.Graphics.Texture2D" data-throw-if-not-resolved="false"></xref> instance that contains a rendered preview of an <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> at the given file path. summary: A helper method to create a <xref href="Microsoft.Xna.Framework.Graphics.Texture2D" data-throw-if-not-resolved="false"></xref> instance that contains a rendered preview of an <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> at the given file path.
example: [] example: []
syntax: syntax:
content: public static Func<Texture2D> CreateLotPreview(Map map, string fileName, Point size, float tileScale, Color backgroundColor, bool async = true) content: public static Func<Texture2D> CreateLotPreview(Map map, string fileName, Point size, float tileScale, Color backgroundColor, bool async = true, Func<string, ExportedLot> load = null)
parameters: parameters:
- id: map - id: map
type: TinyLife.World.Map type: TinyLife.World.Map
@ -248,24 +248,26 @@ items:
- id: async - id: async
type: System.Boolean type: System.Boolean
description: Whether the <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> should be loaded from disk asynchronously. description: Whether the <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> should be loaded from disk asynchronously.
- id: load
type: System.Func{System.String,TinyLife.World.ExportedLot}
return: return:
type: System.Func{Microsoft.Xna.Framework.Graphics.Texture2D} type: System.Func{Microsoft.Xna.Framework.Graphics.Texture2D}
description: A function that gathers the generated texture. When first invoked, it is generated. Subsequent calls will return the same generated texture. description: A function that gathers the generated texture. When first invoked, it is generated. Subsequent calls will return the same generated texture.
content.vb: Public Shared Function CreateLotPreview(map As Map, fileName As String, size As Point, tileScale As Single, backgroundColor As Color, async As Boolean = True) As Func(Of Texture2D) content.vb: Public Shared Function CreateLotPreview(map As Map, fileName As String, size As Point, tileScale As Single, backgroundColor As Color, async As Boolean = True, load As Func(Of String, ExportedLot) = Nothing) As Func(Of Texture2D)
overload: TinyLife.Uis.Menus.CreateLotPreview* overload: TinyLife.Uis.Menus.CreateLotPreview*
nameWithType.vb: Menus.CreateLotPreview(Map, String, Point, Single, Color, Boolean) nameWithType.vb: Menus.CreateLotPreview(Map, String, Point, Single, Color, Boolean, Func(Of String, ExportedLot))
fullName.vb: TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map, String, Microsoft.Xna.Framework.Point, Single, Microsoft.Xna.Framework.Color, Boolean) fullName.vb: TinyLife.Uis.Menus.CreateLotPreview(TinyLife.World.Map, String, Microsoft.Xna.Framework.Point, Single, Microsoft.Xna.Framework.Color, Boolean, System.Func(Of String, TinyLife.World.ExportedLot))
name.vb: CreateLotPreview(Map, String, Point, Single, Color, Boolean) name.vb: CreateLotPreview(Map, String, Point, Single, Color, Boolean, Func(Of String, ExportedLot))
- uid: TinyLife.Uis.Menus.CreateHouseholdPreview(System.String,TinyLife.Objects.LifeSpan,System.Boolean) - uid: TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})
commentId: M:TinyLife.Uis.Menus.CreateHouseholdPreview(System.String,TinyLife.Objects.LifeSpan,System.Boolean) commentId: M:TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})
id: CreateHouseholdPreview(System.String,TinyLife.Objects.LifeSpan,System.Boolean) id: CreateHouseholdPreview(TinyLife.World.Map,System.String,Microsoft.Xna.Framework.Point,System.Single,Microsoft.Xna.Framework.Color,System.Boolean,System.Func{System.String,TinyLife.World.ExportedHousehold})
parent: TinyLife.Uis.Menus parent: TinyLife.Uis.Menus
langs: langs:
- csharp - csharp
- vb - vb
name: CreateHouseholdPreview(string, LifeSpan, bool) name: CreateHouseholdPreview(Map, string, Point, float, Color, bool, Func<string, ExportedHousehold>)
nameWithType: Menus.CreateHouseholdPreview(string, LifeSpan, bool) nameWithType: Menus.CreateHouseholdPreview(Map, string, Point, float, Color, bool, Func<string, ExportedHousehold>)
fullName: TinyLife.Uis.Menus.CreateHouseholdPreview(string, TinyLife.Objects.LifeSpan, bool) fullName: TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map, string, Microsoft.Xna.Framework.Point, float, Microsoft.Xna.Framework.Color, bool, System.Func<string, TinyLife.World.ExportedHousehold>)
type: Method type: Method
source: source:
remote: remote:
@ -274,31 +276,39 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CreateHouseholdPreview id: CreateHouseholdPreview
path: ../TinyLife/Uis/Menus.cs path: ../TinyLife/Uis/Menus.cs
startLine: 221 startLine: 226
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Uis namespace: TinyLife.Uis
summary: A helper method that creates an action that can be invoked to render a preview of an <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> at the given file path. summary: A helper method that creates a preview of an <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> at the given file path.
example: [] example: []
syntax: syntax:
content: public static Action<(SpriteBatch Batch, Vector2 Position, float Width, float Scale)> CreateHouseholdPreview(string fileName, LifeSpan lifeSpan, bool async = true) content: public static Func<Texture2D> CreateHouseholdPreview(Map map, string fileName, Point size, float scale, Color backgroundColor, bool async = true, Func<string, ExportedHousehold> load = null)
parameters: parameters:
- id: map
type: TinyLife.World.Map
- id: fileName - id: fileName
type: System.String type: System.String
description: The file name to load the <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> from. description: The file name to load the <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> from.
- id: lifeSpan - id: size
type: TinyLife.Objects.LifeSpan type: Microsoft.Xna.Framework.Point
- id: scale
type: System.Single
- id: backgroundColor
type: Microsoft.Xna.Framework.Color
- id: async - id: async
type: System.Boolean type: System.Boolean
description: Whether the <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> should be loaded from disk asynchronously. description: Whether the <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> should be loaded from disk asynchronously.
- id: load
type: System.Func{System.String,TinyLife.World.ExportedHousehold}
return: return:
type: System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}} type: System.Func{Microsoft.Xna.Framework.Graphics.Texture2D}
description: An action that can be invoked to render a preview of the household. description: A function that gathers the generated texture. When first invoked, it is generated. Subsequent calls will return the same generated texture.
content.vb: Public Shared Function CreateHouseholdPreview(fileName As String, lifeSpan As LifeSpan, async As Boolean = True) As Action(Of (Batch As SpriteBatch, Position As Vector2, Width As Single, Scale As Single)) content.vb: Public Shared Function CreateHouseholdPreview(map As Map, fileName As String, size As Point, scale As Single, backgroundColor As Color, async As Boolean = True, load As Func(Of String, ExportedHousehold) = Nothing) As Func(Of Texture2D)
overload: TinyLife.Uis.Menus.CreateHouseholdPreview* overload: TinyLife.Uis.Menus.CreateHouseholdPreview*
nameWithType.vb: Menus.CreateHouseholdPreview(String, LifeSpan, Boolean) nameWithType.vb: Menus.CreateHouseholdPreview(Map, String, Point, Single, Color, Boolean, Func(Of String, ExportedHousehold))
fullName.vb: TinyLife.Uis.Menus.CreateHouseholdPreview(String, TinyLife.Objects.LifeSpan, Boolean) fullName.vb: TinyLife.Uis.Menus.CreateHouseholdPreview(TinyLife.World.Map, String, Microsoft.Xna.Framework.Point, Single, Microsoft.Xna.Framework.Color, Boolean, System.Func(Of String, TinyLife.World.ExportedHousehold))
name.vb: CreateHouseholdPreview(String, LifeSpan, Boolean) name.vb: CreateHouseholdPreview(Map, String, Point, Single, Color, Boolean, Func(Of String, ExportedHousehold))
references: references:
- uid: MLEM.Ui - uid: MLEM.Ui
commentId: N:MLEM.Ui commentId: N:MLEM.Ui
@ -1021,7 +1031,7 @@ references:
fullName: TinyLife.World.ExportedLot fullName: TinyLife.World.ExportedLot
- uid: TinyLife.Uis.Menus.CreateLotPreview* - uid: TinyLife.Uis.Menus.CreateLotPreview*
commentId: Overload:TinyLife.Uis.Menus.CreateLotPreview commentId: Overload:TinyLife.Uis.Menus.CreateLotPreview
href: TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_CreateLotPreview_TinyLife_World_Map_System_String_Microsoft_Xna_Framework_Point_System_Single_Microsoft_Xna_Framework_Color_System_Boolean_ href: TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_CreateLotPreview_TinyLife_World_Map_System_String_Microsoft_Xna_Framework_Point_System_Single_Microsoft_Xna_Framework_Color_System_Boolean_System_Func_System_String_TinyLife_World_ExportedLot__
name: CreateLotPreview name: CreateLotPreview
nameWithType: Menus.CreateLotPreview nameWithType: Menus.CreateLotPreview
fullName: TinyLife.Uis.Menus.CreateLotPreview fullName: TinyLife.Uis.Menus.CreateLotPreview
@ -1068,6 +1078,51 @@ references:
nameWithType.vb: Boolean nameWithType.vb: Boolean
fullName.vb: Boolean fullName.vb: Boolean
name.vb: Boolean name.vb: Boolean
- uid: System.Func{System.String,TinyLife.World.ExportedLot}
commentId: T:System.Func{System.String,TinyLife.World.ExportedLot}
parent: System
definition: System.Func`2
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func<string, ExportedLot>
nameWithType: Func<string, ExportedLot>
fullName: System.Func<string, TinyLife.World.ExportedLot>
nameWithType.vb: Func(Of String, ExportedLot)
fullName.vb: System.Func(Of String, TinyLife.World.ExportedLot)
name.vb: Func(Of String, ExportedLot)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.World.ExportedLot
name: ExportedLot
href: TinyLife.World.ExportedLot.html
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.World.ExportedLot
name: ExportedLot
href: TinyLife.World.ExportedLot.html
- name: )
- uid: System.Func{Microsoft.Xna.Framework.Graphics.Texture2D} - uid: System.Func{Microsoft.Xna.Framework.Graphics.Texture2D}
commentId: T:System.Func{Microsoft.Xna.Framework.Graphics.Texture2D} commentId: T:System.Func{Microsoft.Xna.Framework.Graphics.Texture2D}
parent: System parent: System
@ -1170,175 +1225,52 @@ references:
fullName: TinyLife.World.ExportedHousehold fullName: TinyLife.World.ExportedHousehold
- uid: TinyLife.Uis.Menus.CreateHouseholdPreview* - uid: TinyLife.Uis.Menus.CreateHouseholdPreview*
commentId: Overload:TinyLife.Uis.Menus.CreateHouseholdPreview commentId: Overload:TinyLife.Uis.Menus.CreateHouseholdPreview
href: TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_CreateHouseholdPreview_System_String_TinyLife_Objects_LifeSpan_System_Boolean_ href: TinyLife.Uis.Menus.html#TinyLife_Uis_Menus_CreateHouseholdPreview_TinyLife_World_Map_System_String_Microsoft_Xna_Framework_Point_System_Single_Microsoft_Xna_Framework_Color_System_Boolean_System_Func_System_String_TinyLife_World_ExportedHousehold__
name: CreateHouseholdPreview name: CreateHouseholdPreview
nameWithType: Menus.CreateHouseholdPreview nameWithType: Menus.CreateHouseholdPreview
fullName: TinyLife.Uis.Menus.CreateHouseholdPreview fullName: TinyLife.Uis.Menus.CreateHouseholdPreview
- uid: TinyLife.Objects.LifeSpan - uid: System.Func{System.String,TinyLife.World.ExportedHousehold}
commentId: T:TinyLife.Objects.LifeSpan commentId: T:System.Func{System.String,TinyLife.World.ExportedHousehold}
parent: TinyLife.Objects
href: TinyLife.Objects.LifeSpan.html
name: LifeSpan
nameWithType: LifeSpan
fullName: TinyLife.Objects.LifeSpan
- uid: System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}}
commentId: T:System.Action{System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}}
parent: System parent: System
definition: System.Action`1 definition: System.Func`2
href: https://learn.microsoft.com/dotnet/api/system.action-1 href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Action<(SpriteBatch Batch, Vector2 Position, float Width, float Scale)> name: Func<string, ExportedHousehold>
nameWithType: Action<(SpriteBatch Batch, Vector2 Position, float Width, float Scale)> nameWithType: Func<string, ExportedHousehold>
fullName: System.Action<(Microsoft.Xna.Framework.Graphics.SpriteBatch Batch, Microsoft.Xna.Framework.Vector2 Position, float Width, float Scale)> fullName: System.Func<string, TinyLife.World.ExportedHousehold>
nameWithType.vb: Action(Of (Batch As SpriteBatch, Position As Vector2, Width As Single, Scale As Single)) nameWithType.vb: Func(Of String, ExportedHousehold)
fullName.vb: System.Action(Of (Batch As Microsoft.Xna.Framework.Graphics.SpriteBatch, Position As Microsoft.Xna.Framework.Vector2, Width As Single, Scale As Single)) fullName.vb: System.Func(Of String, TinyLife.World.ExportedHousehold)
name.vb: Action(Of (Batch As SpriteBatch, Position As Vector2, Width As Single, Scale As Single)) name.vb: Func(Of String, ExportedHousehold)
spec.csharp: spec.csharp:
- uid: System.Action`1 - uid: System.Func`2
name: Action name: Func
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1 href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: < - name: <
- name: ( - uid: System.String
- uid: Microsoft.Xna.Framework.Graphics.SpriteBatch name: string
name: SpriteBatch
isExternal: true isExternal: true
- name: " " href: https://learn.microsoft.com/dotnet/api/system.string
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}.Batch
name: Batch
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,system.single-.batch
- name: ',' - name: ','
- name: " " - name: " "
- uid: Microsoft.Xna.Framework.Vector2 - uid: TinyLife.World.ExportedHousehold
name: Vector2 name: ExportedHousehold
isExternal: true href: TinyLife.World.ExportedHousehold.html
- name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}.Position
name: Position
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,system.single-.position
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}.Width
name: Width
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,system.single-.width
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}.Scale
name: Scale
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,system.single-.scale
- name: )
- name: '>' - name: '>'
spec.vb: spec.vb:
- uid: System.Action`1 - uid: System.Func`2
name: Action name: Func
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1 href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: ( - name: (
- name: Of - name: Of
- name: " " - name: " "
- name: ( - uid: System.String
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}.Batch name: String
name: Batch
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,system.single-.batch
- name: " "
- name: As
- name: " "
- uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
name: SpriteBatch
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ',' - name: ','
- name: " " - name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}.Position - uid: TinyLife.World.ExportedHousehold
name: Position name: ExportedHousehold
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,system.single-.position href: TinyLife.World.ExportedHousehold.html
- name: " "
- name: As
- name: " "
- uid: Microsoft.Xna.Framework.Vector2
name: Vector2
isExternal: true
- name: ','
- name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}.Width
name: Width
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,system.single-.width
- name: " "
- name: As
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: System.ValueTuple{Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,System.Single,System.Single}.Scale
name: Scale
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.graphics.spritebatch,microsoft.xna.framework.vector2,system.single,system.single-.scale
- name: " "
- name: As
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- 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: System.Action`1
commentId: T:System.Action`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
name: Action<T>
nameWithType: Action<T>
fullName: System.Action<T>
nameWithType.vb: Action(Of T)
fullName.vb: System.Action(Of T)
name.vb: Action(Of T)
spec.csharp:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: (
- name: Of
- name: " "
- name: T
- name: ) - name: )

View file

@ -22,7 +22,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WallDisplay id: WallDisplay
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 644 startLine: 647
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -54,7 +54,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Up id: Up
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 649 startLine: 652
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -82,7 +82,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Auto id: Auto
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 653 startLine: 656
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife
@ -110,7 +110,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Down id: Down
path: ../TinyLife/Options.cs path: ../TinyLife/Options.cs
startLine: 657 startLine: 660
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife namespace: TinyLife

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DrawDelegate id: DrawDelegate
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 3058 startLine: 3057
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -26,7 +26,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExportedHousehold id: ExportedHousehold
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 683 startLine: 693
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -65,7 +65,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExportedVersion id: ExportedVersion
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 688 startLine: 698
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -94,7 +94,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Members id: Members
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 693 startLine: 703
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -129,7 +129,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Money id: Money
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 697 startLine: 707
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -158,7 +158,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FurnitureStorage id: FurnitureStorage
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 701 startLine: 711
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -187,7 +187,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ClothesStorage id: ClothesStorage
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 705 startLine: 715
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -216,7 +216,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Description id: Description
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 709 startLine: 719
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -245,7 +245,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ValidateForPreview id: ValidateForPreview
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 711 startLine: 721
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -32,7 +32,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExportedLot id: ExportedLot
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 589 startLine: 591
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -74,7 +74,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExportedVersion id: ExportedVersion
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 594 startLine: 596
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -103,7 +103,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Area id: Area
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 598 startLine: 600
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -132,7 +132,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Type id: Type
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 602 startLine: 604
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -161,7 +161,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Furniture id: Furniture
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 606 startLine: 608
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -190,7 +190,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Walls id: Walls
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 611 startLine: 613
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -231,7 +231,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WallLikes id: WallLikes
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 616 startLine: 618
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -260,7 +260,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Roofs id: Roofs
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 620 startLine: 622
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -289,7 +289,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Stairs id: Stairs
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 625 startLine: 627
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -318,7 +318,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Tiles id: Tiles
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 629 startLine: 631
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -347,7 +347,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OtherFloorTiles id: OtherFloorTiles
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 634 startLine: 636
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -376,7 +376,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPrice id: GetPrice
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 640 startLine: 642
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -407,7 +407,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetCoveredArea id: GetCoveredArea
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 655 startLine: 657
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -441,7 +441,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ValidateForPreview id: ValidateForPreview
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 671 startLine: 673
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -23,7 +23,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RandomConstellation id: RandomConstellation
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 510 startLine: 520
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -59,7 +59,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PossibleMembers id: PossibleMembers
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 516 startLine: 526
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -91,7 +91,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PossibleRelations id: PossibleRelations
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 521 startLine: 531
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -123,7 +123,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 528 startLine: 538
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -161,7 +161,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Generate id: Generate
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 539 startLine: 549
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -27,7 +27,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RandomRelation id: RandomRelation
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 607 startLine: 617
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -63,7 +63,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FirstPerson id: FirstPerson
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 612 startLine: 622
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -92,7 +92,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SecondPerson id: SecondPerson
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 616 startLine: 626
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -121,7 +121,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Relation id: Relation
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 620 startLine: 630
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -150,7 +150,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Max id: Max
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 624 startLine: 634
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -179,7 +179,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 635 startLine: 645
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -229,7 +229,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 646 startLine: 656
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -276,7 +276,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 656 startLine: 666
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -320,7 +320,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 666 startLine: 676
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -24,7 +24,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Relation id: Relation
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 569 startLine: 579
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -60,7 +60,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GenealogyType id: GenealogyType
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 574 startLine: 584
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -89,7 +89,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RelationshipType id: RelationshipType
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 578 startLine: 588
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -118,7 +118,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RomanceType id: RomanceType
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 582 startLine: 592
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -147,7 +147,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Dating id: Dating
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 586 startLine: 596
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -176,7 +176,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 595 startLine: 605
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WeeklyBillsDelegate id: WeeklyBillsDelegate
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 505 startLine: 515
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -7,6 +7,7 @@ items:
children: children:
- TinyLife.World.Household.#ctor(TinyLife.World.Map,TinyLife.World.Lot,System.Boolean) - TinyLife.World.Household.#ctor(TinyLife.World.Map,TinyLife.World.Lot,System.Boolean)
- TinyLife.World.Household.Add(TinyLife.Objects.PersonLike) - TinyLife.World.Household.Add(TinyLife.Objects.PersonLike)
- TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
- TinyLife.World.Household.AddedThroughPopulating - TinyLife.World.Household.AddedThroughPopulating
- TinyLife.World.Household.AreUtilitiesDisabled(System.Nullable{System.TimeSpan}) - TinyLife.World.Household.AreUtilitiesDisabled(System.Nullable{System.TimeSpan})
- TinyLife.World.Household.ClothesStorage - TinyLife.World.Household.ClothesStorage
@ -210,7 +211,7 @@ items:
summary: >- summary: >-
This household's furniture storage, which is a set of <xref href="TinyLife.Objects.Furniture" data-throw-if-not-resolved="false"></xref> items that are not placed, but owned by this household. This household's furniture storage, which is a set of <xref href="TinyLife.Objects.Furniture" data-throw-if-not-resolved="false"></xref> items that are not placed, but owned by this household.
To add new objects to the furniture storage, simply add them to this set. To add new objects to the furniture storage, use <xref href="TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)" data-throw-if-not-resolved="false"></xref>, which also moves it to the correct map and position. Removal is possible through this collection directly.
example: [] example: []
syntax: syntax:
content: >- content: >-
@ -864,6 +865,35 @@ items:
description: The person to add description: The person to add
content.vb: Public Sub Add(person As PersonLike) content.vb: Public Sub Add(person As PersonLike)
overload: TinyLife.World.Household.Add* overload: TinyLife.World.Household.Add*
- uid: TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
commentId: M:TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
id: AddToFurnitureStorage(TinyLife.Objects.Furniture)
parent: TinyLife.World.Household
langs:
- csharp
- vb
name: AddToFurnitureStorage(Furniture)
nameWithType: Household.AddToFurnitureStorage(Furniture)
fullName: TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
type: Method
source:
remote:
path: TinyLife/World/Household.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddToFurnitureStorage
path: ../TinyLife/World/Household.cs
startLine: 228
assemblies:
- Tiny Life
namespace: TinyLife.World
syntax:
content: public void AddToFurnitureStorage(Furniture furniture)
parameters:
- id: furniture
type: TinyLife.Objects.Furniture
content.vb: Public Sub AddToFurnitureStorage(furniture As Furniture)
overload: TinyLife.World.Household.AddToFurnitureStorage*
- uid: TinyLife.World.Household.Remove(TinyLife.Objects.PersonLike,System.Boolean) - uid: TinyLife.World.Household.Remove(TinyLife.Objects.PersonLike,System.Boolean)
commentId: M:TinyLife.World.Household.Remove(TinyLife.Objects.PersonLike,System.Boolean) commentId: M:TinyLife.World.Household.Remove(TinyLife.Objects.PersonLike,System.Boolean)
id: Remove(TinyLife.Objects.PersonLike,System.Boolean) id: Remove(TinyLife.Objects.PersonLike,System.Boolean)
@ -882,7 +912,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Remove id: Remove
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 233 startLine: 243
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -920,7 +950,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HasMember id: HasMember
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 246 startLine: 256
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -955,7 +985,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate id: Validate
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 255 startLine: 265
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -989,7 +1019,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Export id: Export
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 273 startLine: 283
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1033,7 +1063,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Import id: Import
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 284 startLine: 294
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1077,7 +1107,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AreUtilitiesDisabled id: AreUtilitiesDisabled
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 331 startLine: 341
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1115,7 +1145,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetWeeklyBills id: GetWeeklyBills
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 344 startLine: 354
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1149,7 +1179,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetAgeGroups id: GetAgeGroups
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 377 startLine: 387
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1187,7 +1217,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Generate id: Generate
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 390 startLine: 400
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1237,7 +1267,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetMatchingConstellations id: GetMatchingConstellations
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 440 startLine: 450
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1272,7 +1302,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetExportedHouseholds id: GetExportedHouseholds
path: ../TinyLife/World/Household.cs path: ../TinyLife/World/Household.cs
startLine: 475 startLine: 485
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2296,6 +2326,30 @@ references:
name: Furniture name: Furniture
nameWithType: Furniture nameWithType: Furniture
fullName: TinyLife.Objects.Furniture fullName: TinyLife.Objects.Furniture
- uid: TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
commentId: M:TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
href: TinyLife.World.Household.html#TinyLife_World_Household_AddToFurnitureStorage_TinyLife_Objects_Furniture_
name: AddToFurnitureStorage(Furniture)
nameWithType: Household.AddToFurnitureStorage(Furniture)
fullName: TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
spec.csharp:
- uid: TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
name: AddToFurnitureStorage
href: TinyLife.World.Household.html#TinyLife_World_Household_AddToFurnitureStorage_TinyLife_Objects_Furniture_
- name: (
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: )
spec.vb:
- uid: TinyLife.World.Household.AddToFurnitureStorage(TinyLife.Objects.Furniture)
name: AddToFurnitureStorage
href: TinyLife.World.Household.html#TinyLife_World_Household_AddToFurnitureStorage_TinyLife_Objects_Furniture_
- name: (
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: )
- uid: System.Collections.Generic.HashSet{TinyLife.Objects.Furniture} - uid: System.Collections.Generic.HashSet{TinyLife.Objects.Furniture}
commentId: T:System.Collections.Generic.HashSet{TinyLife.Objects.Furniture} commentId: T:System.Collections.Generic.HashSet{TinyLife.Objects.Furniture}
parent: System.Collections.Generic parent: System.Collections.Generic
@ -2702,6 +2756,12 @@ references:
name: Add name: Add
nameWithType: Household.Add nameWithType: Household.Add
fullName: TinyLife.World.Household.Add fullName: TinyLife.World.Household.Add
- uid: TinyLife.World.Household.AddToFurnitureStorage*
commentId: Overload:TinyLife.World.Household.AddToFurnitureStorage
href: TinyLife.World.Household.html#TinyLife_World_Household_AddToFurnitureStorage_TinyLife_Objects_Furniture_
name: AddToFurnitureStorage
nameWithType: Household.AddToFurnitureStorage
fullName: TinyLife.World.Household.AddToFurnitureStorage
- uid: TinyLife.World.Household.Remove* - uid: TinyLife.World.Household.Remove*
commentId: Overload:TinyLife.World.Household.Remove commentId: Overload:TinyLife.World.Household.Remove
href: TinyLife.World.Household.html#TinyLife_World_Household_Remove_TinyLife_Objects_PersonLike_System_Boolean_ href: TinyLife.World.Household.html#TinyLife_World_Household_Remove_TinyLife_Objects_PersonLike_System_Boolean_

View file

@ -1182,7 +1182,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetExportedLots id: GetExportedLots
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 543 startLine: 545
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -42,7 +42,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LotType id: LotType
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 690 startLine: 692
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -90,7 +90,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Types id: Types
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 697 startLine: 699
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -119,7 +119,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Residential id: Residential
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 700 startLine: 702
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -146,7 +146,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Park id: Park
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 716 startLine: 718
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -173,7 +173,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Cafe id: Cafe
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 719 startLine: 721
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -200,7 +200,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: KidsPlayground id: KidsPlayground
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 730 startLine: 732
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -227,7 +227,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Library id: Library
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 737 startLine: 739
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -254,7 +254,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GenericPublicLot id: GenericPublicLot
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 746 startLine: 748
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -281,7 +281,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Gym id: Gym
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 749 startLine: 751
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -308,7 +308,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Bar id: Bar
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 756 startLine: 758
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -335,7 +335,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Museum id: Museum
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 767 startLine: 769
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -362,7 +362,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Name id: Name
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 782 startLine: 784
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -391,7 +391,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Icon id: Icon
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 786 startLine: 788
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -420,7 +420,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsResidential id: IsResidential
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 791 startLine: 793
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -452,7 +452,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RequiredFurniture id: RequiredFurniture
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 796 startLine: 798
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -484,7 +484,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetVisitPriority id: GetVisitPriority
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 803 startLine: 805
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -520,7 +520,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Employments id: Employments
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 808 startLine: 810
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -554,7 +554,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanExecuteAction id: CanExecuteAction
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 813 startLine: 815
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -588,7 +588,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VisitHours id: VisitHours
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 818 startLine: 820
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -622,7 +622,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DisplayName id: DisplayName
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 823 startLine: 825
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -653,7 +653,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 833 startLine: 835
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -700,7 +700,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetCurrentVisitPriority id: GetCurrentVisitPriority
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 850 startLine: 852
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -746,7 +746,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register id: Register
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 858 startLine: 860
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -780,7 +780,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetScalingVisitPriority id: GetScalingVisitPriority
path: ../TinyLife/World/Lot.cs path: ../TinyLife/World/Lot.cs
startLine: 871 startLine: 873
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PathfindingNodeConstructDelegate id: PathfindingNodeConstructDelegate
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 3026 startLine: 3025
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -1881,7 +1881,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveWall id: RemoveWall
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1139 startLine: 1143
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1916,7 +1916,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetWallBetween id: GetWallBetween
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1156 startLine: 1160
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1965,7 +1965,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetTile id: GetTile
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1172 startLine: 1171
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2009,7 +2009,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SetTile id: SetTile
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1183 startLine: 1182
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2050,7 +2050,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddRoof id: AddRoof
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1201 startLine: 1200
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2082,7 +2082,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRoof id: GetRoof
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1215 startLine: 1214
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2123,7 +2123,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRoofs id: GetRoofs
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1230 startLine: 1229
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2158,7 +2158,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveRoof id: RemoveRoof
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1243 startLine: 1242
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2190,7 +2190,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetObjects id: GetObjects
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1257 startLine: 1256
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2231,7 +2231,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetObject id: GetObject
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1273 startLine: 1272
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2275,7 +2275,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddObject id: AddObject
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1285 startLine: 1284
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2312,7 +2312,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveObject id: RemoveObject
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1313 startLine: 1312
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2351,7 +2351,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPeople id: GetPeople
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1341 startLine: 1340
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2382,7 +2382,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetStoredDeadPeople id: GetStoredDeadPeople
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1352 startLine: 1351
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2413,7 +2413,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetAllPeople id: GetAllPeople
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1365 startLine: 1364
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2444,7 +2444,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHousehold id: GetHousehold
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1374 startLine: 1373
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2479,7 +2479,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHousehold id: GetHousehold
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1387 startLine: 1386
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2514,7 +2514,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddHousehold id: AddHousehold
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1401 startLine: 1400
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2555,7 +2555,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveHousehold id: RemoveHousehold
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1411 startLine: 1410
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2587,7 +2587,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetHouseholds id: GetHouseholds
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1419 startLine: 1418
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2618,7 +2618,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetSection id: GetSection
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1430 startLine: 1429
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2659,7 +2659,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetSections id: GetSections
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1448 startLine: 1447
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2700,7 +2700,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetSections id: GetSections
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1458 startLine: 1457
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2741,7 +2741,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MarkDirtyForPathfinding id: MarkDirtyForPathfinding
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1480 startLine: 1479
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2784,7 +2784,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetPathCost id: GetPathCost
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1503 startLine: 1502
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2837,7 +2837,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanWalkBetween id: CanWalkBetween
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1527 startLine: 1526
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2892,7 +2892,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsFreeSpot id: IsFreeSpot
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1537 startLine: 1536
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2933,7 +2933,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PlaySound id: PlaySound
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1555 startLine: 1554
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -2994,7 +2994,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PlaySound id: PlaySound
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1571 startLine: 1570
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3052,7 +3052,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetClosestFreeExitPoint id: GetClosestFreeExitPoint
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1591 startLine: 1590
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3087,7 +3087,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetExitPoints id: GetExitPoints
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1601 startLine: 1600
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3118,7 +3118,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetWalls id: GetWalls
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1630 startLine: 1629
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3161,7 +3161,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetStairs id: GetStairs
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1651 startLine: 1650
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3202,7 +3202,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddStairs id: AddStairs
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1664 startLine: 1663
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3234,7 +3234,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveStairs id: RemoveStairs
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1676 startLine: 1675
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3269,7 +3269,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ApplyCameraRotation id: ApplyCameraRotation
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1693 startLine: 1692
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3313,7 +3313,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ApplyInverseCameraRotation id: ApplyInverseCameraRotation
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1709 startLine: 1708
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3351,7 +3351,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnCameraRotationChanged id: OnCameraRotationChanged
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1724 startLine: 1723
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3389,7 +3389,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnCurrentGameMapChanged id: OnCurrentGameMapChanged
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1748 startLine: 1747
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3424,7 +3424,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AddLight id: AddLight
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1766 startLine: 1765
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3458,7 +3458,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveLight id: RemoveLight
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1778 startLine: 1777
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3492,7 +3492,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MoveEverything id: MoveEverything
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1790 startLine: 1789
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3536,7 +3536,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ValidateRooms id: ValidateRooms
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1886 startLine: 1885
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3577,7 +3577,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRegularVisitors id: GetRegularVisitors
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1935 startLine: 1934
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3613,7 +3613,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetAllLotEmployments id: GetAllLotEmployments
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1945 startLine: 1944
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3647,7 +3647,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MarkGroundTileDirtyForDrawing id: MarkGroundTileDirtyForDrawing
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1958 startLine: 1957
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3682,7 +3682,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MarkObjectDirtyForDrawing id: MarkObjectDirtyForDrawing
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 1974 startLine: 1973
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3726,7 +3726,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PopulateLots id: PopulateLots
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 2005 startLine: 2004
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3757,7 +3757,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PrepareForPermanentRemoval id: PrepareForPermanentRemoval
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 2072 startLine: 2071
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3785,7 +3785,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LoadStaticMap id: LoadStaticMap
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 2687 startLine: 2686
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3823,7 +3823,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IsLotHidden id: IsLotHidden
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 2731 startLine: 2730
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3863,7 +3863,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetMapSampler id: GetMapSampler
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 2749 startLine: 2748
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3897,7 +3897,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateExternalPeople id: UpdateExternalPeople
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 2757 startLine: 2756
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -3938,7 +3938,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetVisibleWorldArea id: GetVisibleWorldArea
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 2858 startLine: 2857
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ObjectUpdateDelegate id: ObjectUpdateDelegate
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 3043 startLine: 3042
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ObjectUpdateDelegateNoPhase id: ObjectUpdateDelegateNoPhase
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 3048 startLine: 3047
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -8,6 +8,7 @@ items:
- TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion) - TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)
- TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme[],System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion) - TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme[],System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)
- TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorSettings,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion) - TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorSettings,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)
- TinyLife.World.OpeningType.CanBuy
- TinyLife.World.OpeningType.Colors - TinyLife.World.OpeningType.Colors
- TinyLife.World.OpeningType.Construct(System.Int32[],TinyLife.Objects.WallLike) - TinyLife.World.OpeningType.Construct(System.Int32[],TinyLife.Objects.WallLike)
- TinyLife.World.OpeningType.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Int32[],System.Nullable{Microsoft.Xna.Framework.Color},System.Single,Microsoft.Xna.Framework.Point) - TinyLife.World.OpeningType.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,System.Int32,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Int32[],System.Nullable{Microsoft.Xna.Framework.Color},System.Single,Microsoft.Xna.Framework.Point)
@ -32,7 +33,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OpeningType id: OpeningType
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 18 startLine: 19
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -80,7 +81,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Types id: Types
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 26 startLine: 27
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -112,7 +113,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Name id: Name
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 64 startLine: 68
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -141,7 +142,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: WallMode id: WallMode
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 68 startLine: 72
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -170,7 +171,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Price id: Price
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 72 startLine: 76
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -199,7 +200,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Colors id: Colors
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 76 startLine: 80
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -228,7 +229,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Icon id: Icon
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 81 startLine: 85
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -242,6 +243,37 @@ items:
return: return:
type: MLEM.Textures.TextureRegion type: MLEM.Textures.TextureRegion
content.vb: Public ReadOnly Icon As TextureRegion content.vb: Public ReadOnly Icon As TextureRegion
- uid: TinyLife.World.OpeningType.CanBuy
commentId: P:TinyLife.World.OpeningType.CanBuy
id: CanBuy
parent: TinyLife.World.OpeningType
langs:
- csharp
- vb
name: CanBuy
nameWithType: OpeningType.CanBuy
fullName: TinyLife.World.OpeningType.CanBuy
type: Property
source:
remote:
path: TinyLife/World/OpeningType.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanBuy
path: ../TinyLife/World/OpeningType.cs
startLine: 90
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: A field that indicates whether this opening type can be bought without the "ShowNonBuyable" cheat enabled
example: []
syntax:
content: public bool CanBuy { get; init; }
parameters: []
return:
type: System.Boolean
content.vb: Public Property CanBuy As Boolean
overload: TinyLife.World.OpeningType.CanBuy*
- uid: TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion) - uid: TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)
commentId: M:TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion) commentId: M:TinyLife.World.OpeningType.#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)
id: '#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)' id: '#ctor(System.String,MLEM.Textures.TextureRegion,TinyLife.World.WallMode,System.Int32,TinyLife.Utilities.ColorScheme,System.Func{TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike,TinyLife.World.Opening},MLEM.Textures.TextureRegion)'
@ -260,7 +292,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 89 startLine: 98
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -306,7 +338,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 95 startLine: 104
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -352,7 +384,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 108 startLine: 117
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -405,7 +437,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Draw id: Draw
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 134 startLine: 143
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -476,7 +508,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DrawUi id: DrawUi
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 158 startLine: 167
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -526,7 +558,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Construct id: Construct
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 171 startLine: 180
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -567,7 +599,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register id: Register
path: ../TinyLife/World/OpeningType.cs path: ../TinyLife/World/OpeningType.cs
startLine: 180 startLine: 189
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1206,6 +1238,23 @@ references:
- uid: MLEM.Textures - uid: MLEM.Textures
name: Textures name: Textures
isExternal: true isExternal: true
- uid: TinyLife.World.OpeningType.CanBuy*
commentId: Overload:TinyLife.World.OpeningType.CanBuy
href: TinyLife.World.OpeningType.html#TinyLife_World_OpeningType_CanBuy
name: CanBuy
nameWithType: OpeningType.CanBuy
fullName: TinyLife.World.OpeningType.CanBuy
- 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.World.OpeningType.#ctor* - uid: TinyLife.World.OpeningType.#ctor*
commentId: Overload:TinyLife.World.OpeningType.#ctor commentId: Overload:TinyLife.World.OpeningType.#ctor
href: TinyLife.World.OpeningType.html#TinyLife_World_OpeningType__ctor_System_String_MLEM_Textures_TextureRegion_TinyLife_World_WallMode_System_Int32_TinyLife_Utilities_ColorScheme_System_Func_TinyLife_World_OpeningType_System_Int32___TinyLife_Objects_WallLike_TinyLife_World_Opening__MLEM_Textures_TextureRegion_ href: TinyLife.World.OpeningType.html#TinyLife_World_OpeningType__ctor_System_String_MLEM_Textures_TextureRegion_TinyLife_World_WallMode_System_Int32_TinyLife_Utilities_ColorScheme_System_Func_TinyLife_World_OpeningType_System_Int32___TinyLife_Objects_WallLike_TinyLife_World_Opening__MLEM_Textures_TextureRegion_
@ -1406,17 +1455,6 @@ references:
name: Vector2 name: Vector2
nameWithType: Vector2 nameWithType: Vector2
fullName: Microsoft.Xna.Framework.Vector2 fullName: Microsoft.Xna.Framework.Vector2
- 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: System.Single - uid: System.Single
commentId: T:System.Single commentId: T:System.Single
parent: System parent: System

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateDelegate id: UpdateDelegate
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 3033 startLine: 3032
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -19,7 +19,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: UpdateDelegateNoPhase id: UpdateDelegateNoPhase
path: ../TinyLife/World/Map.cs path: ../TinyLife/World/Map.cs
startLine: 3038 startLine: 3037
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World

View file

@ -5,7 +5,7 @@ items:
id: WallMode id: WallMode
parent: TinyLife.World parent: TinyLife.World
children: children:
- TinyLife.World.WallMode.#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point) - TinyLife.World.WallMode.#ctor(System.String,MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)
- TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}}) - TinyLife.World.WallMode.ApplyMasks(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,MLEM.Data.RuntimeTexturePacker,System.Action{System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion}})
- TinyLife.World.WallMode.Door - TinyLife.World.WallMode.Door
- TinyLife.World.WallMode.Full - TinyLife.World.WallMode.Full
@ -14,6 +14,7 @@ items:
- TinyLife.World.WallMode.MaskPosition - TinyLife.World.WallMode.MaskPosition
- TinyLife.World.WallMode.MaskTexture - TinyLife.World.WallMode.MaskTexture
- TinyLife.World.WallMode.Modes - TinyLife.World.WallMode.Modes
- TinyLife.World.WallMode.Name
- TinyLife.World.WallMode.NarrowLong - TinyLife.World.WallMode.NarrowLong
- TinyLife.World.WallMode.NarrowWideTop - TinyLife.World.WallMode.NarrowWideTop
- TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean) - TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)
@ -85,10 +86,10 @@ items:
summary: The registered wall modes, both by mods and the game itself. summary: The registered wall modes, both by mods and the game itself.
example: [] example: []
syntax: syntax:
content: public static readonly ReadOnlyCollection<WallMode> Modes content: public static readonly ReadOnlyDictionary<string, WallMode> Modes
return: return:
type: System.Collections.ObjectModel.ReadOnlyCollection{TinyLife.World.WallMode} type: System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.World.WallMode}
content.vb: Public Shared ReadOnly Modes As ReadOnlyCollection(Of WallMode) content.vb: Public Shared ReadOnly Modes As ReadOnlyDictionary(Of String, WallMode)
- uid: TinyLife.World.WallMode.Full - uid: TinyLife.World.WallMode.Full
commentId: F:TinyLife.World.WallMode.Full commentId: F:TinyLife.World.WallMode.Full
id: Full id: Full
@ -466,6 +467,33 @@ items:
return: return:
type: TinyLife.World.WallMode[] type: TinyLife.World.WallMode[]
content.vb: Public Shared ReadOnly StairsTop As WallMode() content.vb: Public Shared ReadOnly StairsTop As WallMode()
- uid: TinyLife.World.WallMode.Name
commentId: F:TinyLife.World.WallMode.Name
id: Name
parent: TinyLife.World.WallMode
langs:
- csharp
- vb
name: Name
nameWithType: WallMode.Name
fullName: TinyLife.World.WallMode.Name
type: Field
source:
remote:
path: TinyLife/World/WallMode.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Name
path: ../TinyLife/World/WallMode.cs
startLine: 81
assemblies:
- Tiny Life
namespace: TinyLife.World
syntax:
content: public readonly string Name
return:
type: System.String
content.vb: Public ReadOnly Name As String
- uid: TinyLife.World.WallMode.MaskTexture - uid: TinyLife.World.WallMode.MaskTexture
commentId: F:TinyLife.World.WallMode.MaskTexture commentId: F:TinyLife.World.WallMode.MaskTexture
id: MaskTexture id: MaskTexture
@ -484,7 +512,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MaskTexture id: MaskTexture
path: ../TinyLife/World/WallMode.cs path: ../TinyLife/World/WallMode.cs
startLine: 85 startLine: 86
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -516,7 +544,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MaskPosition id: MaskPosition
path: ../TinyLife/World/WallMode.cs path: ../TinyLife/World/WallMode.cs
startLine: 90 startLine: 91
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -530,16 +558,16 @@ items:
return: return:
type: Microsoft.Xna.Framework.Point type: Microsoft.Xna.Framework.Point
content.vb: Public ReadOnly MaskPosition As Point content.vb: Public ReadOnly MaskPosition As Point
- uid: TinyLife.World.WallMode.#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point) - uid: TinyLife.World.WallMode.#ctor(System.String,MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.World.WallMode.#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point) commentId: M:TinyLife.World.WallMode.#ctor(System.String,MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)
id: '#ctor(MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)' id: '#ctor(System.String,MLEM.Textures.UniformTextureAtlas,Microsoft.Xna.Framework.Point)'
parent: TinyLife.World.WallMode parent: TinyLife.World.WallMode
langs: langs:
- csharp - csharp
- vb - vb
name: WallMode(UniformTextureAtlas, Point) name: WallMode(string, UniformTextureAtlas, Point)
nameWithType: WallMode.WallMode(UniformTextureAtlas, Point) nameWithType: WallMode.WallMode(string, UniformTextureAtlas, Point)
fullName: TinyLife.World.WallMode.WallMode(MLEM.Textures.UniformTextureAtlas, Microsoft.Xna.Framework.Point) fullName: TinyLife.World.WallMode.WallMode(string, MLEM.Textures.UniformTextureAtlas, Microsoft.Xna.Framework.Point)
type: Constructor type: Constructor
source: source:
remote: remote:
@ -548,7 +576,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: ../TinyLife/World/WallMode.cs path: ../TinyLife/World/WallMode.cs
startLine: 99 startLine: 100
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -558,19 +586,21 @@ items:
Each pixel on the mask that is non-transparent will be removed from the <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>. Each pixel on the mask that is non-transparent will be removed from the <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref>.
example: [] example: []
syntax: syntax:
content: public WallMode(UniformTextureAtlas maskTexture, Point maskPosition) content: public WallMode(string name, UniformTextureAtlas maskTexture, Point maskPosition)
parameters: parameters:
- id: name
type: System.String
- id: maskTexture - id: maskTexture
type: MLEM.Textures.UniformTextureAtlas type: MLEM.Textures.UniformTextureAtlas
description: The texture that is used as a mask when masking <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref> using <xref href="TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData%2cMLEM.Extensions.TextureExtensions.TextureData%2cMLEM.Extensions.TextureExtensions.TextureData%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point)" data-throw-if-not-resolved="false"></xref>. description: The texture that is used as a mask when masking <xref href="TinyLife.World.Wallpaper" data-throw-if-not-resolved="false"></xref> using <xref href="TinyLife.World.WallMode.MaskWallpaper(MLEM.Extensions.TextureExtensions.TextureData%2cMLEM.Extensions.TextureExtensions.TextureData%2cMLEM.Extensions.TextureExtensions.TextureData%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point%2cMicrosoft.Xna.Framework.Point)" data-throw-if-not-resolved="false"></xref>.
- id: maskPosition - id: maskPosition
type: Microsoft.Xna.Framework.Point type: Microsoft.Xna.Framework.Point
description: The position on the <xref href="TinyLife.World.WallMode.MaskTexture" data-throw-if-not-resolved="false"></xref> that the mask is at, in texture region coordinates similar to <xref href="MLEM.Textures.UniformTextureAtlas" data-throw-if-not-resolved="false"></xref>. description: The position on the <xref href="TinyLife.World.WallMode.MaskTexture" data-throw-if-not-resolved="false"></xref> that the mask is at, in texture region coordinates similar to <xref href="MLEM.Textures.UniformTextureAtlas" data-throw-if-not-resolved="false"></xref>.
content.vb: Public Sub New(maskTexture As UniformTextureAtlas, maskPosition As Point) content.vb: Public Sub New(name As String, maskTexture As UniformTextureAtlas, maskPosition As Point)
overload: TinyLife.World.WallMode.#ctor* overload: TinyLife.World.WallMode.#ctor*
nameWithType.vb: WallMode.New(UniformTextureAtlas, Point) nameWithType.vb: WallMode.New(String, UniformTextureAtlas, Point)
fullName.vb: TinyLife.World.WallMode.New(MLEM.Textures.UniformTextureAtlas, Microsoft.Xna.Framework.Point) fullName.vb: TinyLife.World.WallMode.New(String, MLEM.Textures.UniformTextureAtlas, Microsoft.Xna.Framework.Point)
name.vb: New(UniformTextureAtlas, Point) name.vb: New(String, UniformTextureAtlas, Point)
- uid: TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean) - uid: TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)
commentId: M:TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean) commentId: M:TinyLife.World.WallMode.OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)
id: OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean) id: OffsetTextureRegion(Microsoft.Xna.Framework.Point,System.Boolean,System.Boolean)
@ -589,7 +619,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OffsetTextureRegion id: OffsetTextureRegion
path: ../TinyLife/World/WallMode.cs path: ../TinyLife/World/WallMode.cs
startLine: 111 startLine: 113
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -633,7 +663,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register id: Register
path: ../TinyLife/World/WallMode.cs path: ../TinyLife/World/WallMode.cs
startLine: 125 startLine: 127
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -668,7 +698,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ApplyMasks id: ApplyMasks
path: ../TinyLife/World/WallMode.cs path: ../TinyLife/World/WallMode.cs
startLine: 140 startLine: 142
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -1083,66 +1113,84 @@ references:
- uid: TinyLife.Utilities - uid: TinyLife.Utilities
name: Utilities name: Utilities
href: TinyLife.Utilities.html href: TinyLife.Utilities.html
- uid: System.Collections.ObjectModel.ReadOnlyCollection{TinyLife.World.WallMode} - uid: System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.World.WallMode}
commentId: T:System.Collections.ObjectModel.ReadOnlyCollection{TinyLife.World.WallMode} commentId: T:System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.World.WallMode}
parent: System.Collections.ObjectModel parent: System.Collections.ObjectModel
definition: System.Collections.ObjectModel.ReadOnlyCollection`1 definition: System.Collections.ObjectModel.ReadOnlyDictionary`2
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1 href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
name: ReadOnlyCollection<WallMode> name: ReadOnlyDictionary<string, WallMode>
nameWithType: ReadOnlyCollection<WallMode> nameWithType: ReadOnlyDictionary<string, WallMode>
fullName: System.Collections.ObjectModel.ReadOnlyCollection<TinyLife.World.WallMode> fullName: System.Collections.ObjectModel.ReadOnlyDictionary<string, TinyLife.World.WallMode>
nameWithType.vb: ReadOnlyCollection(Of WallMode) nameWithType.vb: ReadOnlyDictionary(Of String, WallMode)
fullName.vb: System.Collections.ObjectModel.ReadOnlyCollection(Of TinyLife.World.WallMode) fullName.vb: System.Collections.ObjectModel.ReadOnlyDictionary(Of String, TinyLife.World.WallMode)
name.vb: ReadOnlyCollection(Of WallMode) name.vb: ReadOnlyDictionary(Of String, WallMode)
spec.csharp: spec.csharp:
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1 - uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyCollection name: ReadOnlyDictionary
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1 href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: < - name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.World.WallMode - uid: TinyLife.World.WallMode
name: WallMode name: WallMode
href: TinyLife.World.WallMode.html href: TinyLife.World.WallMode.html
- name: '>' - name: '>'
spec.vb: spec.vb:
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1 - uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyCollection name: ReadOnlyDictionary
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1 href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: ( - name: (
- name: Of - name: Of
- name: " " - name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.World.WallMode - uid: TinyLife.World.WallMode
name: WallMode name: WallMode
href: TinyLife.World.WallMode.html href: TinyLife.World.WallMode.html
- name: ) - name: )
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1 - uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
commentId: T:System.Collections.ObjectModel.ReadOnlyCollection`1 commentId: T:System.Collections.ObjectModel.ReadOnlyDictionary`2
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1 href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
name: ReadOnlyCollection<T> name: ReadOnlyDictionary<TKey, TValue>
nameWithType: ReadOnlyCollection<T> nameWithType: ReadOnlyDictionary<TKey, TValue>
fullName: System.Collections.ObjectModel.ReadOnlyCollection<T> fullName: System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue>
nameWithType.vb: ReadOnlyCollection(Of T) nameWithType.vb: ReadOnlyDictionary(Of TKey, TValue)
fullName.vb: System.Collections.ObjectModel.ReadOnlyCollection(Of T) fullName.vb: System.Collections.ObjectModel.ReadOnlyDictionary(Of TKey, TValue)
name.vb: ReadOnlyCollection(Of T) name.vb: ReadOnlyDictionary(Of TKey, TValue)
spec.csharp: spec.csharp:
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1 - uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyCollection name: ReadOnlyDictionary
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1 href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: < - name: <
- name: T - name: TKey
- name: ','
- name: " "
- name: TValue
- name: '>' - name: '>'
spec.vb: spec.vb:
- uid: System.Collections.ObjectModel.ReadOnlyCollection`1 - uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyCollection name: ReadOnlyDictionary
isExternal: true isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlycollection-1 href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: ( - name: (
- name: Of - name: Of
- name: " " - name: " "
- name: T - name: TKey
- name: ','
- name: " "
- name: TValue
- name: ) - name: )
- uid: System.Collections.ObjectModel - uid: System.Collections.ObjectModel
commentId: N:System.Collections.ObjectModel commentId: N:System.Collections.ObjectModel
@ -1241,6 +1289,17 @@ references:
href: TinyLife.World.WallMode.html href: TinyLife.World.WallMode.html
- name: ( - name: (
- name: ) - name: )
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: TinyLife.World.Wallpaper - uid: TinyLife.World.Wallpaper
commentId: T:TinyLife.World.Wallpaper commentId: T:TinyLife.World.Wallpaper
parent: TinyLife.World parent: TinyLife.World
@ -1407,7 +1466,7 @@ references:
isExternal: true isExternal: true
- uid: TinyLife.World.WallMode.#ctor* - uid: TinyLife.World.WallMode.#ctor*
commentId: Overload:TinyLife.World.WallMode.#ctor commentId: Overload:TinyLife.World.WallMode.#ctor
href: TinyLife.World.WallMode.html#TinyLife_World_WallMode__ctor_MLEM_Textures_UniformTextureAtlas_Microsoft_Xna_Framework_Point_ href: TinyLife.World.WallMode.html#TinyLife_World_WallMode__ctor_System_String_MLEM_Textures_UniformTextureAtlas_Microsoft_Xna_Framework_Point_
name: WallMode name: WallMode
nameWithType: WallMode.WallMode nameWithType: WallMode.WallMode
fullName: TinyLife.World.WallMode.WallMode fullName: TinyLife.World.WallMode.WallMode