mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-25 04:28:34 +01:00
0.34.0
This commit is contained in:
parent
9fc989d9a6
commit
6b57294b85
142 changed files with 11176 additions and 2148 deletions
51
Changelog.md
51
Changelog.md
|
@ -1,3 +1,54 @@
|
|||
# 0.34.0
|
||||
*June 25, 2023*
|
||||
|
||||
![](media/changelog/0.34.0.png)
|
||||
|
||||
> Of Bars, Brews and Progress Bars
|
||||
|
||||
Read the devlog [on the website](https://tinylifegame.com/devlogs/0.34.0/).
|
||||
|
||||
Additions
|
||||
- Added the ability to make drinks using the Mixology Kit
|
||||
- Added a Bar lot type with a bartender
|
||||
- Added the Dive Bar by the Lake lot by [AngelofAcid](https://steamcommunity.com/id/AngelofAcid/myworkshopfiles/?appid=1651490) to Maple Plains City
|
||||
- Added Now You See It All window and door
|
||||
- Added Solid Paint with Baseboard wallpaper and ColorCo Cute Cacti wallpaper
|
||||
- Added progress displays to some actions
|
||||
|
||||
Improvements
|
||||
- Improved the lot staff tooltip to add more information
|
||||
- Made conversation partners walk back to the initiator if they walk away after being talked to
|
||||
- Made protein shakes also count towards the Drink Mixing skill
|
||||
- Allow selecting a Tiny in the active household by right-clicking them in the world
|
||||
- Improved lot visitation priorities for the AI
|
||||
- Some performance improvements for pathfinding
|
||||
- Allow daily goal for teachers to also be fulfilled through skill books
|
||||
- Display an open book texture when people are reading
|
||||
- Allow water tiles to connect to dirt paths as well
|
||||
- Pause the game while the notification history is open
|
||||
- Order lot employment menu by first name
|
||||
- Made gender options and clothes on randomly generated Tinies have a higher chance to be more consistent with Western
|
||||
gender norms
|
||||
|
||||
Fixes
|
||||
- Ensure vehicles are removed when an action is canceled or fails
|
||||
- Fixed children being unable to take days off school
|
||||
- Fixed the gnocchi being too cheap
|
||||
- Fixed "map unavailable" tooltip not being displayed when using a gamepad in the demo
|
||||
- Fixed the quality of baked goods being influenced by the cooking skill
|
||||
- Fixed lot staff sometimes not finding their lot and getting stuck
|
||||
- Fixed lots momentarily being invisible when a Tiny in the household goes home
|
||||
- Fixed sleeping in a crib causing an exception when the crib is removed
|
||||
- Fixed people only going to the corners of public lots when visiting, instead of the entrance
|
||||
- Fixed people being called to meal if they haven't been invited in yet
|
||||
- Fixed Perfect Painter life goal being available for children
|
||||
- Fixed work and school emotions displaying the wrong source
|
||||
|
||||
API
|
||||
- Added the ability for lot types to define their own visitation hours
|
||||
- Added Map.OnEventsAttachable event
|
||||
- Added a basic style preference system for clothes
|
||||
|
||||
# 0.33.2
|
||||
*May 29, 2023*
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
"TinyLife.Actions.Action.GetFreeChairs(TinyLife.Objects.Person,TinyLife.Objects.Furniture,System.Func{MLEM.Misc.Direction2,System.Boolean})": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.GetIconObject": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.GetProgress": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.GetRandomValidVariety(System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionVariety},TinyLife.Actions.ActionInfo)": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.GetSeatCategory(TinyLife.Objects.Person)": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)": "TinyLife.Actions.Action.yml",
|
||||
|
@ -41,6 +42,7 @@
|
|||
"TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.IsCompleted": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.Map": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)": "TinyLife.Actions.Action.yml",
|
||||
"TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.Action.yml",
|
||||
|
@ -267,6 +269,7 @@
|
|||
"TinyLife.Actions.ActionType.Light": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.LockDoor": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.LotEmploymentIdle": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.MakeDrinks": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.MakeFunOfBeingBadAtSchool": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.MakeFunOfBeingNerd": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.MakeFunOfBeingOutdoorsy": "TinyLife.Actions.ActionType.yml",
|
||||
|
@ -285,6 +288,7 @@
|
|||
"TinyLife.Actions.ActionType.MoveHere": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.OrderCafeFood": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.OrderCoffee": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.OrderDrinks": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.OrderTea": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.Paint": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.PassOut": "TinyLife.Actions.ActionType.yml",
|
||||
|
@ -419,6 +423,7 @@
|
|||
"TinyLife.Actions.ActionType.TypeSettings.Varieties": "TinyLife.Actions.ActionType.TypeSettings.yml",
|
||||
"TinyLife.Actions.ActionType.UseDiaper": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.VisitLot": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.VisitLotEmploymentLot": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.VisitorGoHome": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.WaitForOrder": "TinyLife.Actions.ActionType.yml",
|
||||
"TinyLife.Actions.ActionType.WakeUp": "TinyLife.Actions.ActionType.yml",
|
||||
|
@ -503,6 +508,8 @@
|
|||
"TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action)": "TinyLife.Actions.Behaviors.ReadBehavior.yml",
|
||||
"TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress": "TinyLife.Actions.Behaviors.ReadBehavior.yml",
|
||||
"TinyLife.Actions.Behaviors.ReadBehavior.Initialize": "TinyLife.Actions.Behaviors.ReadBehavior.yml",
|
||||
"TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)": "TinyLife.Actions.Behaviors.ReadBehavior.yml",
|
||||
"TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.Behaviors.ReadBehavior.yml",
|
||||
"TinyLife.Actions.Behaviors.SinkBehavior": "TinyLife.Actions.Behaviors.SinkBehavior.yml",
|
||||
"TinyLife.Actions.Behaviors.SinkBehavior.#ctor(TinyLife.Actions.Action)": "TinyLife.Actions.Behaviors.SinkBehavior.yml",
|
||||
"TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions": "TinyLife.Actions.Behaviors.SinkBehavior.yml",
|
||||
|
@ -629,6 +636,7 @@
|
|||
"TinyLife.Actions.HelpAction.CreateFirstActions": "TinyLife.Actions.HelpAction.yml",
|
||||
"TinyLife.Actions.HelpAction.CreateHelpedAction(TinyLife.Actions.ActionInfo)": "TinyLife.Actions.HelpAction.yml",
|
||||
"TinyLife.Actions.HelpAction.GetNextAction(TinyLife.Actions.CompletionType)": "TinyLife.Actions.HelpAction.yml",
|
||||
"TinyLife.Actions.HelpAction.GetProgress": "TinyLife.Actions.HelpAction.yml",
|
||||
"TinyLife.Actions.HelpAction.HelpedAction": "TinyLife.Actions.HelpAction.yml",
|
||||
"TinyLife.Actions.HelpAction.Helper": "TinyLife.Actions.HelpAction.yml",
|
||||
"TinyLife.Actions.HelpAction.InitializeConversation": "TinyLife.Actions.HelpAction.yml",
|
||||
|
@ -675,6 +683,7 @@
|
|||
"TinyLife.Actions.MultiAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.MultiAction.yml",
|
||||
"TinyLife.Actions.MultiAction.Validate(TinyLife.Objects.Person)": "TinyLife.Actions.MultiAction.yml",
|
||||
"TinyLife.Actions.OrderFromStaffAction": "TinyLife.Actions.OrderFromStaffAction.yml",
|
||||
"TinyLife.Actions.OrderFromStaffAction.#ctor(TinyLife.Actions.ActionInfo)": "TinyLife.Actions.OrderFromStaffAction.yml",
|
||||
"TinyLife.Actions.OrderFromStaffAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)": "TinyLife.Actions.OrderFromStaffAction.yml",
|
||||
"TinyLife.Actions.OrderFromStaffAction.CanMultitask(TinyLife.Actions.Action)": "TinyLife.Actions.OrderFromStaffAction.yml",
|
||||
"TinyLife.Actions.OrderFromStaffAction.CreateFirstActions": "TinyLife.Actions.OrderFromStaffAction.yml",
|
||||
|
@ -929,6 +938,7 @@
|
|||
"TinyLife.Emotions.EmotionModifier.DirtyHandsAfterToilet": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.DirtyObject": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.DisplayName": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.Drunk": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.EmbarrassingWorkConversation": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.EmergencyFood": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.Emotion": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
|
@ -1054,6 +1064,7 @@
|
|||
"TinyLife.Emotions.EmotionModifier.ShoodChild": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.SkilledOrder": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.SleptOutside": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.SlightlyDrunk": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.SomeoneTriedMyFood": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.StandingDeskPositive": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.StandingDeskSore": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
|
@ -1080,6 +1091,7 @@
|
|||
"TinyLife.Emotions.EmotionModifier.UpsettingConversation": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.UsefulProgrammingResearch": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.VacationDaysAgain": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.VeryDrunk": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.WonTournament": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.WoodworkingSplinter": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
"TinyLife.Emotions.EmotionModifier.WritersBlock": "TinyLife.Emotions.EmotionModifier.yml",
|
||||
|
@ -1592,6 +1604,10 @@
|
|||
"TinyLife.Objects.Bathtub.#ctor(System.Guid,TinyLife.Objects.FurnitureType,System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)": "TinyLife.Objects.Bathtub.yml",
|
||||
"TinyLife.Objects.Bathtub.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},MLEM.Misc.Direction2,System.Int32[],System.Single,System.Boolean,TinyLife.Objects.ParentInfo,System.Single,System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})": "TinyLife.Objects.Bathtub.yml",
|
||||
"TinyLife.Objects.Bathtub.HasWater": "TinyLife.Objects.Bathtub.yml",
|
||||
"TinyLife.Objects.Book": "TinyLife.Objects.Book.yml",
|
||||
"TinyLife.Objects.Book.#ctor(System.Guid,TinyLife.Objects.FurnitureType,System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)": "TinyLife.Objects.Book.yml",
|
||||
"TinyLife.Objects.Book.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},MLEM.Misc.Direction2,System.Int32[],System.Single,System.Boolean,TinyLife.Objects.ParentInfo,System.Single,System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})": "TinyLife.Objects.Book.yml",
|
||||
"TinyLife.Objects.Book.IsOpen": "TinyLife.Objects.Book.yml",
|
||||
"TinyLife.Objects.BreakableFurniture": "TinyLife.Objects.BreakableFurniture.yml",
|
||||
"TinyLife.Objects.BreakableFurniture.#ctor(System.Guid,TinyLife.Objects.FurnitureType,System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)": "TinyLife.Objects.BreakableFurniture.yml",
|
||||
"TinyLife.Objects.BreakableFurniture.ActionUpdate(TinyLife.Actions.Action,Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single,System.Boolean)": "TinyLife.Objects.BreakableFurniture.yml",
|
||||
|
@ -1615,7 +1631,7 @@
|
|||
"TinyLife.Objects.Chimney.#ctor(System.Guid,TinyLife.Objects.FurnitureType,System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)": "TinyLife.Objects.Chimney.yml",
|
||||
"TinyLife.Objects.Chimney.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Objects.Chimney.yml",
|
||||
"TinyLife.Objects.Clothes": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Utilities.ColorScheme[])": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Objects.StylePreference,TinyLife.Utilities.ColorScheme[])": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.Ages": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.AllIntentions": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.AreCompatible(TinyLife.Objects.Clothes,TinyLife.Objects.Clothes)": "TinyLife.Objects.Clothes.yml",
|
||||
|
@ -1623,7 +1639,6 @@
|
|||
"TinyLife.Objects.Clothes.DepthFunction": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.Description": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.GetDescription(TinyLife.Objects.Person)": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.GetPrice": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.Icon": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.Intentions": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.IsIncompatible": "TinyLife.Objects.Clothes.yml",
|
||||
|
@ -1638,6 +1653,8 @@
|
|||
"TinyLife.Objects.Clothes.ReferencePrice": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.Register(TinyLife.Objects.Clothes)": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.SourceString": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.StylePreference": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.StylePreferences": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.TextureBehaviorLayer": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.TextureRegion": "TinyLife.Objects.Clothes.yml",
|
||||
"TinyLife.Objects.Clothes.Textures": "TinyLife.Objects.Clothes.yml",
|
||||
|
@ -1682,6 +1699,7 @@
|
|||
"TinyLife.Objects.DeathReason.Electrocution": "TinyLife.Objects.DeathReason.yml",
|
||||
"TinyLife.Objects.DeathReason.InexplicableReasons": "TinyLife.Objects.DeathReason.yml",
|
||||
"TinyLife.Objects.DeathReason.Starvation": "TinyLife.Objects.DeathReason.yml",
|
||||
"TinyLife.Objects.DeathReason.TooMuchBrew": "TinyLife.Objects.DeathReason.yml",
|
||||
"TinyLife.Objects.DeathReason.TooMuchProtein": "TinyLife.Objects.DeathReason.yml",
|
||||
"TinyLife.Objects.Fence": "TinyLife.Objects.Fence.yml",
|
||||
"TinyLife.Objects.Fence.#ctor(System.Guid,TinyLife.Objects.FurnitureType,System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)": "TinyLife.Objects.Fence.yml",
|
||||
|
@ -1806,6 +1824,7 @@
|
|||
"TinyLife.Objects.FurnitureType.CafeSign": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.Cattails": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ChildStove": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.CocktailShaker": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ColorfulCandles": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.ColoringBook": "TinyLife.Objects.FurnitureType.yml",
|
||||
"TinyLife.Objects.FurnitureType.Construct``1(System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Nullable{System.Guid})": "TinyLife.Objects.FurnitureType.yml",
|
||||
|
@ -2104,12 +2123,14 @@
|
|||
"TinyLife.Objects.MapObject.OnRemoved": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.OnUpdate": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.OnValidated": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.OnValidatedEarly": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.ParentInfo": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.PersonRotationOrder": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.Position": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.ResetToStatic(System.Boolean)": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.Validate": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.ValidateEarly": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.MapObject.Visibility": "TinyLife.Objects.MapObject.yml",
|
||||
"TinyLife.Objects.Newspaper": "TinyLife.Objects.Newspaper.yml",
|
||||
"TinyLife.Objects.Newspaper.Day": "TinyLife.Objects.Newspaper.yml",
|
||||
|
@ -2215,8 +2236,9 @@
|
|||
"TinyLife.Objects.Outfit.Clothes": "TinyLife.Objects.Outfit.yml",
|
||||
"TinyLife.Objects.Outfit.EnsureIntentionsMatch(System.Int32)": "TinyLife.Objects.Outfit.yml",
|
||||
"TinyLife.Objects.Outfit.GetIntentionPercentage(TinyLife.Objects.ClothesIntention)": "TinyLife.Objects.Outfit.yml",
|
||||
"TinyLife.Objects.Outfit.GetMostFittingStyle": "TinyLife.Objects.Outfit.yml",
|
||||
"TinyLife.Objects.Outfit.Intentions": "TinyLife.Objects.Outfit.yml",
|
||||
"TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})": "TinyLife.Objects.Outfit.yml",
|
||||
"TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})": "TinyLife.Objects.Outfit.yml",
|
||||
"TinyLife.Objects.OverlayWallHanging": "TinyLife.Objects.OverlayWallHanging.yml",
|
||||
"TinyLife.Objects.OverlayWallHanging.#ctor(System.Guid,TinyLife.Objects.FurnitureType,System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)": "TinyLife.Objects.OverlayWallHanging.yml",
|
||||
"TinyLife.Objects.OverlayWallHanging.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},MLEM.Misc.Direction2,System.Int32[],System.Single,System.Boolean,TinyLife.Objects.ParentInfo,System.Single,System.Boolean,System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})": "TinyLife.Objects.OverlayWallHanging.yml",
|
||||
|
@ -2510,6 +2532,10 @@
|
|||
"TinyLife.Objects.SpeakStyle.Scared": "TinyLife.Objects.SpeakStyle.yml",
|
||||
"TinyLife.Objects.SpeakStyle.Shocked": "TinyLife.Objects.SpeakStyle.yml",
|
||||
"TinyLife.Objects.SpeakStyle.Thinking": "TinyLife.Objects.SpeakStyle.yml",
|
||||
"TinyLife.Objects.StylePreference": "TinyLife.Objects.StylePreference.yml",
|
||||
"TinyLife.Objects.StylePreference.Feminine": "TinyLife.Objects.StylePreference.yml",
|
||||
"TinyLife.Objects.StylePreference.Masculine": "TinyLife.Objects.StylePreference.yml",
|
||||
"TinyLife.Objects.StylePreference.Neutral": "TinyLife.Objects.StylePreference.yml",
|
||||
"TinyLife.Objects.TrashBag": "TinyLife.Objects.TrashBag.yml",
|
||||
"TinyLife.Objects.TrashBag.#ctor(System.Guid,TinyLife.Objects.FurnitureType,System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)": "TinyLife.Objects.TrashBag.yml",
|
||||
"TinyLife.Objects.TrashBag.Content": "TinyLife.Objects.TrashBag.yml",
|
||||
|
@ -2531,6 +2557,7 @@
|
|||
"TinyLife.Objects.UnfinishedWoodwork.Validate": "TinyLife.Objects.UnfinishedWoodwork.yml",
|
||||
"TinyLife.Objects.Vehicle": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,TinyLife.Objects.Vehicle.VehicleType)": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.Action": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.Driver": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.GetSpeed": "TinyLife.Objects.Vehicle.yml",
|
||||
|
@ -2540,8 +2567,6 @@
|
|||
"TinyLife.Objects.Vehicle.Rotation": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.Type": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.UpdateDriving(TinyLife.Actions.PathfindAction)": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.Validate": "TinyLife.Objects.Vehicle.yml",
|
||||
"TinyLife.Objects.Vehicle.VehicleType": "TinyLife.Objects.Vehicle.VehicleType.yml",
|
||||
"TinyLife.Objects.Vehicle.VehicleType.Car": "TinyLife.Objects.Vehicle.VehicleType.yml",
|
||||
"TinyLife.Objects.Vehicle.VehicleType.EScooter": "TinyLife.Objects.Vehicle.VehicleType.yml",
|
||||
|
@ -2788,11 +2813,13 @@
|
|||
"TinyLife.Skills.FoodType.ContainerType.Mug": "TinyLife.Skills.FoodType.ContainerType.yml",
|
||||
"TinyLife.Skills.FoodType.ContainerType.Name": "TinyLife.Skills.FoodType.ContainerType.yml",
|
||||
"TinyLife.Skills.FoodType.ContainerType.Plate": "TinyLife.Skills.FoodType.ContainerType.yml",
|
||||
"TinyLife.Skills.FoodType.CreateBaked(System.String,System.Int32,System.Int32,System.Single,TinyLife.Skills.FoodType.FoodIntolerance,System.Boolean,TinyLife.Skills.FoodType.IngredientSource[])": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.CustomTextureFunc": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.DisplayName": "TinyLife.Skills.FoodType.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance.None": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance.NotForBabies": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance.NotForChildren": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance.NotPescetarian": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance.NotVegan": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
"TinyLife.Skills.FoodType.FoodIntolerance.NotVegetarian": "TinyLife.Skills.FoodType.FoodIntolerance.yml",
|
||||
|
@ -2806,13 +2833,16 @@
|
|||
"TinyLife.Skills.FoodType.IngredientSource.#ctor(System.String,TinyLife.Skills.FoodType.ContainerType)": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.Barbecue": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.CafeDisplayCase": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.CanEat": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.ChildStove": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.CoffeeMachine": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.Container": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.Fridge": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.MixologyKit": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.Name": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.OnEaten": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.ProteinShakeMaker": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.RequiredSkill": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.Sink": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.IngredientSource.TeaKit": "TinyLife.Skills.FoodType.IngredientSource.yml",
|
||||
"TinyLife.Skills.FoodType.Intolerances": "TinyLife.Skills.FoodType.yml",
|
||||
|
@ -2868,6 +2898,7 @@
|
|||
"TinyLife.Skills.SkillType.Cleaning": "TinyLife.Skills.SkillType.yml",
|
||||
"TinyLife.Skills.SkillType.Communication": "TinyLife.Skills.SkillType.yml",
|
||||
"TinyLife.Skills.SkillType.Cooking": "TinyLife.Skills.SkillType.yml",
|
||||
"TinyLife.Skills.SkillType.DrinkMixing": "TinyLife.Skills.SkillType.yml",
|
||||
"TinyLife.Skills.SkillType.Fitness": "TinyLife.Skills.SkillType.yml",
|
||||
"TinyLife.Skills.SkillType.Gaming": "TinyLife.Skills.SkillType.yml",
|
||||
"TinyLife.Skills.SkillType.GetMaxLevel(TinyLife.Objects.AgeGroup)": "TinyLife.Skills.SkillType.yml",
|
||||
|
@ -2982,6 +3013,7 @@
|
|||
"TinyLife.Tools.PlayModeTool.Reload": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.SelectedPerson": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.SelectedStat": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.SetSelectedPerson(TinyLife.Objects.Person)": "TinyLife.Tools.PlayModeTool.yml",
|
||||
"TinyLife.Tools.PlayModeTool.StatType": "TinyLife.Tools.PlayModeTool.StatType.yml",
|
||||
"TinyLife.Tools.PlayModeTool.StatType.About": "TinyLife.Tools.PlayModeTool.StatType.yml",
|
||||
"TinyLife.Tools.PlayModeTool.StatType.Emotions": "TinyLife.Tools.PlayModeTool.StatType.yml",
|
||||
|
@ -3229,6 +3261,8 @@
|
|||
"TinyLife.Utilities.Extensions.GetDefaultTab(TinyLife.Objects.ObjectCategory)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetDepth(TinyLife.Objects.ClothesLayer)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetDescription(TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.AgeGroup})": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetPersonality(TinyLife.Skills.FoodType.FoodIntolerance,TinyLife.Objects.Person)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.GetPregnancyHours(TinyLife.Objects.LifeSpan)": "TinyLife.Utilities.Extensions.yml",
|
||||
|
@ -3240,11 +3274,13 @@
|
|||
"TinyLife.Utilities.Extensions.IsActiveRoot(MLEM.Ui.Elements.Element)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsAvailableForAge(TinyLife.Objects.ClothesIntention,TinyLife.Objects.AgeGroup)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsBetween(System.ValueTuple{System.Int32,System.Int32},System.Int32)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsHorizontal(MLEM.Misc.Direction2)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsLockedFor(TinyLife.World.LockType,TinyLife.Objects.Person,TinyLife.World.Lot)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsPartOfPerson(TinyLife.Objects.ClothesLayer)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.IsVertical(MLEM.Misc.Direction2)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.JsonCopy``1(``0)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.Length(System.ValueTuple{System.Int32,System.Int32})": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.Multiplier(TinyLife.Objects.LifeSpan)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.SetPauseGame(MLEM.Ui.RootElement,System.Boolean)": "TinyLife.Utilities.Extensions.yml",
|
||||
"TinyLife.Utilities.Extensions.ToLocalizedString(TinyLife.Skills.Quality)": "TinyLife.Utilities.Extensions.yml",
|
||||
|
@ -3283,6 +3319,12 @@
|
|||
"TinyLife.WallDisplay.Roofs": "TinyLife.WallDisplay.yml",
|
||||
"TinyLife.WallDisplay.Up": "TinyLife.WallDisplay.yml",
|
||||
"TinyLife.World": "TinyLife.World.yml",
|
||||
"TinyLife.World.AutoTile": "TinyLife.World.AutoTile.yml",
|
||||
"TinyLife.World.AutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,TinyLife.World.Tile.Category,MLEM.Textures.TextureRegion,System.Int32[])": "TinyLife.World.AutoTile.yml",
|
||||
"TinyLife.World.AutoTile.ConnectsToTile(TinyLife.World.Map,Microsoft.Xna.Framework.Point,System.Int32,System.Int32)": "TinyLife.World.AutoTile.yml",
|
||||
"TinyLife.World.AutoTile.Draw(Microsoft.Xna.Framework.GameTime,System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean)": "TinyLife.World.AutoTile.yml",
|
||||
"TinyLife.World.AutoTile.DrawBorder(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item},System.Nullable{System.ValueTuple{System.Func{System.Int32,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Color}})": "TinyLife.World.AutoTile.yml",
|
||||
"TinyLife.World.AutoTile.OnNeighborChanged(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)": "TinyLife.World.AutoTile.yml",
|
||||
"TinyLife.World.BillsMail": "TinyLife.World.BillsMail.yml",
|
||||
"TinyLife.World.BillsMail.#ctor(TinyLife.World.Map,System.Guid,System.Single)": "TinyLife.World.BillsMail.yml",
|
||||
"TinyLife.World.BillsMail.Amount": "TinyLife.World.BillsMail.yml",
|
||||
|
@ -3314,11 +3356,6 @@
|
|||
"TinyLife.World.FurnitureMail.Item": "TinyLife.World.FurnitureMail.yml",
|
||||
"TinyLife.World.FurnitureMail.OnCollected(TinyLife.Actions.Action)": "TinyLife.World.FurnitureMail.yml",
|
||||
"TinyLife.World.FurnitureMail.Validate(TinyLife.World.Map)": "TinyLife.World.FurnitureMail.yml",
|
||||
"TinyLife.World.GrassyAutoTile": "TinyLife.World.GrassyAutoTile.yml",
|
||||
"TinyLife.World.GrassyAutoTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,TinyLife.World.Tile.Category,MLEM.Textures.TextureRegion,System.Int32[])": "TinyLife.World.GrassyAutoTile.yml",
|
||||
"TinyLife.World.GrassyAutoTile.Draw(Microsoft.Xna.Framework.GameTime,System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean)": "TinyLife.World.GrassyAutoTile.yml",
|
||||
"TinyLife.World.GrassyAutoTile.DrawGrassBorder(System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item},MLEM.Graphics.AutoTiling.ConnectsTo)": "TinyLife.World.GrassyAutoTile.yml",
|
||||
"TinyLife.World.GrassyAutoTile.OnNeighborChanged(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point)": "TinyLife.World.GrassyAutoTile.yml",
|
||||
"TinyLife.World.Household": "TinyLife.World.Household.yml",
|
||||
"TinyLife.World.Household.#ctor(TinyLife.World.Map,TinyLife.World.Lot)": "TinyLife.World.Household.yml",
|
||||
"TinyLife.World.Household.Add(TinyLife.Objects.Person)": "TinyLife.World.Household.yml",
|
||||
|
@ -3390,13 +3427,15 @@
|
|||
"TinyLife.World.LotEmployment.SetCurrentPerson(TinyLife.World.Map,TinyLife.World.Lot,TinyLife.Objects.Person,System.Boolean)": "TinyLife.World.LotEmployment.yml",
|
||||
"TinyLife.World.LotEmployment.WorkHours": "TinyLife.World.LotEmployment.yml",
|
||||
"TinyLife.World.LotType": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.#ctor(System.String,MLEM.Textures.TextureRegion,System.Boolean,System.Func{TinyLife.World.Lot,TinyLife.Objects.Person,System.Int32},System.ValueTuple{System.Predicate{TinyLife.Objects.Furniture},System.Int32,System.String}[])": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.#ctor(System.String,MLEM.Textures.TextureRegion,System.Boolean,System.Func{TinyLife.World.Lot,TinyLife.Objects.Person,System.Single},System.ValueTuple{System.Predicate{TinyLife.Objects.Furniture},System.Int32,System.String}[])": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.Bar": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.Cafe": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.CanExecuteAction": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.DisplayName": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.Employments": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.GenericPublicLot": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.GetGroupVisitPriority(TinyLife.World.Lot,System.Int32)": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.GetCurrentVisitPriority(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{System.TimeSpan})": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.GetScalingVisitPriority(TinyLife.World.Lot,System.Single,System.Int32)": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.GetVisitPriority": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.Gym": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.Icon": "TinyLife.World.LotType.yml",
|
||||
|
@ -3409,6 +3448,7 @@
|
|||
"TinyLife.World.LotType.RequiredFurniture": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.Residential": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.Types": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.LotType.VisitHours": "TinyLife.World.LotType.yml",
|
||||
"TinyLife.World.Mail": "TinyLife.World.Mail.yml",
|
||||
"TinyLife.World.Mail.#ctor(TinyLife.World.Map,System.Guid)": "TinyLife.World.Mail.yml",
|
||||
"TinyLife.World.Mail.GetReceivingLot": "TinyLife.World.Mail.yml",
|
||||
|
@ -3479,6 +3519,7 @@
|
|||
"TinyLife.World.Map.MarkTileDirtyForDrawing(Microsoft.Xna.Framework.Point)": "TinyLife.World.Map.yml",
|
||||
"TinyLife.World.Map.MoveEverything(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Rectangle,System.Boolean,TinyLife.World.Tile)": "TinyLife.World.Map.yml",
|
||||
"TinyLife.World.Map.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)": "TinyLife.World.Map.yml",
|
||||
"TinyLife.World.Map.OnEventsAttachable": "TinyLife.World.Map.yml",
|
||||
"TinyLife.World.Map.OnObjectAdded": "TinyLife.World.Map.yml",
|
||||
"TinyLife.World.Map.OnObjectRemoved": "TinyLife.World.Map.yml",
|
||||
"TinyLife.World.Map.OnUpdate": "TinyLife.World.Map.yml",
|
||||
|
@ -3614,6 +3655,7 @@
|
|||
"TinyLife.World.Tile.DefaultColors": "TinyLife.World.Tile.yml",
|
||||
"TinyLife.World.Tile.Draw(Microsoft.Xna.Framework.GameTime,System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean)": "TinyLife.World.Tile.yml",
|
||||
"TinyLife.World.Tile.DrawUi(MLEM.Ui.Elements.Element,Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,System.Single)": "TinyLife.World.Tile.yml",
|
||||
"TinyLife.World.Tile.GetAutoTileBorder(TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,TinyLife.World.Tile)": "TinyLife.World.Tile.yml",
|
||||
"TinyLife.World.Tile.GetPrice": "TinyLife.World.Tile.yml",
|
||||
"TinyLife.World.Tile.GetVariationTexture(MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point)": "TinyLife.World.Tile.yml",
|
||||
"TinyLife.World.Tile.GetVisualOffset(MLEM.Misc.Direction2,System.Int32,System.Int32)": "TinyLife.World.Tile.yml",
|
||||
|
@ -3665,6 +3707,7 @@
|
|||
"TinyLife.World.WallMode.NarrowLong": "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.OutlineOnly": "TinyLife.World.WallMode.yml",
|
||||
"TinyLife.World.WallMode.Register(TinyLife.World.WallMode)": "TinyLife.World.WallMode.yml",
|
||||
"TinyLife.World.WallMode.Roof": "TinyLife.World.WallMode.yml",
|
||||
"TinyLife.World.WallMode.RoofGable": "TinyLife.World.WallMode.yml",
|
||||
|
@ -3687,5 +3730,6 @@
|
|||
"TinyLife.World.Wallpaper.Wallpapers": "TinyLife.World.Wallpaper.yml",
|
||||
"TinyLife.World.WaterTile": "TinyLife.World.WaterTile.yml",
|
||||
"TinyLife.World.WaterTile.#ctor(System.String,System.String,System.Int32,System.Collections.Generic.Dictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},System.Collections.Generic.Dictionary{MLEM.Misc.Direction2,Microsoft.Xna.Framework.Point[]},TinyLife.Utilities.ColorScheme[],System.Int32[],System.Boolean,System.Single,TinyLife.World.Tile.Category,MLEM.Textures.TextureRegion,System.Int32[])": "TinyLife.World.WaterTile.yml",
|
||||
"TinyLife.World.WaterTile.ConnectsToTile(TinyLife.World.Map,Microsoft.Xna.Framework.Point,System.Int32,System.Int32)": "TinyLife.World.WaterTile.yml",
|
||||
"TinyLife.World.WaterTile.Draw(Microsoft.Xna.Framework.GameTime,System.Object,TinyLife.World.Map,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Vector2,System.Single,System.Single,System.Collections.Generic.ICollection{MLEM.Graphics.StaticSpriteBatch.Item},System.Boolean)": "TinyLife.World.WaterTile.yml"
|
||||
}
|
|
@ -34,6 +34,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetFreeChairs(TinyLife.Objects.Person,TinyLife.Objects.Furniture,System.Func{MLEM.Misc.Direction2,System.Boolean})
|
||||
- TinyLife.Actions.Action.GetIconObject
|
||||
- TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.GetRandomValidVariety(System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionVariety},TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.GetSeatCategory(TinyLife.Objects.Person)
|
||||
- TinyLife.Actions.Action.GetTableSpot(TinyLife.Objects.Furniture,TinyLife.Objects.ActionSpot)
|
||||
|
@ -44,6 +45,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.IsCompleted
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- TinyLife.Actions.Action.Map
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
|
@ -1121,6 +1123,37 @@ items:
|
|||
description: Whether or not enqueueing a social action is possible.
|
||||
content.vb: Public Overridable Function CanEnqueueConversation(person As Person, type As ActionType) As Boolean
|
||||
overload: TinyLife.Actions.Action.CanEnqueueConversation*
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
id: GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/Action.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetProgress
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 305
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nOptionally returns the progress that this action's execution currently exhibits, in a range between 0 and 1.\nThe returned progress will be displayed below the action icon in the top left as a green bar that is expected to fill up slowly as progress is made.\nReturning an empty value causes no progress bar to be displayed, and is also the default behavior.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public virtual float? GetProgress()
|
||||
return:
|
||||
type: System.Nullable{System.Single}
|
||||
description: This action's progress.
|
||||
content.vb: Public Overridable Function GetProgress() As Single?
|
||||
overload: TinyLife.Actions.Action.GetProgress*
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
id: OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
|
@ -1139,7 +1172,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnChildCompleted
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 307
|
||||
startLine: 317
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1180,7 +1213,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OpenPlayerPrompt
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 323
|
||||
startLine: 333
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1236,7 +1269,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OpenYesNoPrompt
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 359
|
||||
startLine: 369
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1282,7 +1315,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OpenTextPrompt
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 387
|
||||
startLine: 397
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1334,7 +1367,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OpenChoicePrompt
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 400
|
||||
startLine: 410
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1369,7 +1402,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SpeakAlone
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 415
|
||||
startLine: 425
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1419,7 +1452,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SpeakInConversation
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 432
|
||||
startLine: 442
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1478,7 +1511,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FacePartner
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 443
|
||||
startLine: 453
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1512,7 +1545,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CompleteIfNeedFull
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 458
|
||||
startLine: 468
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1550,7 +1583,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CompleteIfTimeUp
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 472
|
||||
startLine: 482
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1600,7 +1633,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CancelIfEmotional
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 486
|
||||
startLine: 496
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1642,7 +1675,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sit
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 502
|
||||
startLine: 512
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1686,7 +1719,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetChildren
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 518
|
||||
startLine: 528
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1724,7 +1757,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetChild
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 535
|
||||
startLine: 545
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1768,7 +1801,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PickUpAndGoTo
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 577
|
||||
startLine: 587
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1815,7 +1848,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PickUpAndGoTo
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 590
|
||||
startLine: 600
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1862,7 +1895,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeChair
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 627
|
||||
startLine: 637
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1900,7 +1933,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeChairs
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 644
|
||||
startLine: 654
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1944,7 +1977,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetSeatCategory
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 664
|
||||
startLine: 674
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1979,7 +2012,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FindAllFreePeople
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 680
|
||||
startLine: 690
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2038,7 +2071,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FindAllFreeFurniture
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 705
|
||||
startLine: 715
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2097,7 +2130,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FindAllFreeWalls
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 723
|
||||
startLine: 733
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2144,7 +2177,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FindAllFreeGround
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 738
|
||||
startLine: 748
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2191,7 +2224,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FindFreeFurniture
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 756
|
||||
startLine: 766
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2244,7 +2277,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FindAllActionObjects
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 769
|
||||
startLine: 779
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2285,7 +2318,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FindValidActionObjects
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 807
|
||||
startLine: 817
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2338,7 +2371,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TryGetRandomValidVariety
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 826
|
||||
startLine: 836
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2385,7 +2418,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRandomValidVariety
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 845
|
||||
startLine: 855
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2426,7 +2459,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetTableSpot
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 860
|
||||
startLine: 870
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2464,7 +2497,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InvokeForBoth
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 873
|
||||
startLine: 883
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2505,7 +2538,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanMultitask
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 885
|
||||
startLine: 895
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2543,7 +2576,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsInappropriate
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 896
|
||||
startLine: 906
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2563,6 +2596,47 @@ items:
|
|||
description: Whether the action is inappropriate here.
|
||||
content.vb: Public Shared Function IsInappropriate(type As ActionType, info As ActionInfo) As Boolean
|
||||
overload: TinyLife.Actions.Action.IsInappropriate*
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
id: IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/Action.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsLotContentVisible
|
||||
path: ../TinyLife/Actions/Action.cs
|
||||
startLine: 926
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nReturns whether the given content of the given <code data-dev-comment-type=\"paramref\" class=\"paramref\">lot</code> is currently visible to the given <code data-dev-comment-type=\"paramref\" class=\"paramref\">person</code>.\nIf the <code data-dev-comment-type=\"paramref\" class=\"paramref\">lot</code> is <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null\">null</a>, then comparisons are made to the lot at the given <code data-dev-comment-type=\"paramref\" class=\"paramref\">position</code>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static bool IsLotContentVisible(Lot lot, Person person, Vector2? position = null)
|
||||
parameters:
|
||||
- id: lot
|
||||
type: TinyLife.World.Lot
|
||||
description: The lot to query; can be <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>.
|
||||
- id: person
|
||||
type: TinyLife.Objects.Person
|
||||
description: The person.
|
||||
- id: position
|
||||
type: System.Nullable{Microsoft.Xna.Framework.Vector2}
|
||||
description: An additional position that should be query if <code data-dev-comment-type="paramref" class="paramref">lot</code> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>. If this is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>, the <code data-dev-comment-type="paramref" class="paramref">person</code>'s <xref href="TinyLife.Objects.MapObject.Position" data-throw-if-not-resolved="false"></xref> is used instead.
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: Whether the lot content on the <code data-dev-comment-type="paramref" class="paramref">lot</code> or at the <code data-dev-comment-type="paramref" class="paramref">position</code> is visible.
|
||||
content.vb: Public Shared Function IsLotContentVisible(lot As Lot, person As Person, position As Vector2? = Nothing) As Boolean
|
||||
overload: TinyLife.Actions.Action.IsLotContentVisible*
|
||||
references:
|
||||
- uid: TinyLife.Objects.Person
|
||||
commentId: T:TinyLife.Objects.Person
|
||||
|
@ -4250,6 +4324,34 @@ references:
|
|||
name: CanEnqueueConversation
|
||||
nameWithType: Action.CanEnqueueConversation
|
||||
fullName: TinyLife.Actions.Action.CanEnqueueConversation
|
||||
- uid: TinyLife.Actions.Action.GetProgress*
|
||||
commentId: Overload:TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
nameWithType: Action.GetProgress
|
||||
fullName: TinyLife.Actions.Action.GetProgress
|
||||
- uid: System.Nullable{System.Single}
|
||||
commentId: T:System.Nullable{System.Single}
|
||||
parent: System
|
||||
definition: System.Nullable`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
name: float?
|
||||
nameWithType: float?
|
||||
fullName: float?
|
||||
nameWithType.vb: Single?
|
||||
fullName.vb: Single?
|
||||
name.vb: Single?
|
||||
spec.csharp:
|
||||
- uid: System.Single
|
||||
name: float
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: '?'
|
||||
spec.vb:
|
||||
- uid: System.Single
|
||||
name: Single
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: '?'
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -5832,29 +5934,6 @@ references:
|
|||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- uid: System.Nullable{System.Single}
|
||||
commentId: T:System.Nullable{System.Single}
|
||||
parent: System
|
||||
definition: System.Nullable`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
name: float?
|
||||
nameWithType: float?
|
||||
fullName: float?
|
||||
nameWithType.vb: Single?
|
||||
fullName.vb: Single?
|
||||
name.vb: Single?
|
||||
spec.csharp:
|
||||
- uid: System.Single
|
||||
name: float
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: '?'
|
||||
spec.vb:
|
||||
- uid: System.Single
|
||||
name: Single
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: '?'
|
||||
- uid: System.Collections.Generic.IEnumerable{TinyLife.Objects.Person}
|
||||
commentId: T:System.Collections.Generic.IEnumerable{TinyLife.Objects.Person}
|
||||
parent: System.Collections.Generic
|
||||
|
@ -6506,3 +6585,20 @@ references:
|
|||
name: IsInappropriate
|
||||
nameWithType: Action.IsInappropriate
|
||||
fullName: TinyLife.Actions.Action.IsInappropriate
|
||||
- uid: TinyLife.Objects.MapObject.Position
|
||||
commentId: P:TinyLife.Objects.MapObject.Position
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: Position
|
||||
nameWithType: MapObject.Position
|
||||
fullName: TinyLife.Objects.MapObject.Position
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible*
|
||||
commentId: Overload:TinyLife.Actions.Action.IsLotContentVisible
|
||||
name: IsLotContentVisible
|
||||
nameWithType: Action.IsLotContentVisible
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible
|
||||
- uid: TinyLife.World.Lot
|
||||
commentId: T:TinyLife.World.Lot
|
||||
parent: TinyLife.World
|
||||
name: Lot
|
||||
nameWithType: Lot
|
||||
fullName: TinyLife.World.Lot
|
||||
|
|
|
@ -453,7 +453,7 @@ items:
|
|||
description: The category that the objects should have. Defaults to Nothing, meaning all categories are considered.
|
||||
- id: includeIndirectly
|
||||
type: System.Boolean
|
||||
description: Whether indirectly involved objects, like the <xref href="TinyLife.Objects.Furniture.ParentFurniture" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Objects.Furniture.GetChildren%60%601" data-throw-if-not-resolved="false"></xref> of furniture should be included
|
||||
description: Whether indirectly involved objects, like the <xref href="TinyLife.Objects.Furniture.ParentFurniture" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Objects.Furniture.GetChildren%60%601" data-throw-if-not-resolved="false"></xref> of furniture, as well as the <xref href="TinyLife.Objects.MapObject.HoldingPerson" data-throw-if-not-resolved="false"></xref> of objects, should be included
|
||||
- id: allowFake
|
||||
type: System.Boolean
|
||||
description: Whether fake items held by players (see <xref href="TinyLife.Objects.Person.SetHeldObject%60%601(TinyLife.Objects.FurnitureType%2cSystem.Int32%5b%5d%2cSystem.Nullable%7bSystem.Guid%7d%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref>) should also be returned.
|
||||
|
@ -500,7 +500,7 @@ items:
|
|||
description: The category that the objects should have. Defaults to Nothing, meaning all categories are considered.
|
||||
- id: includeIndirectly
|
||||
type: System.Boolean
|
||||
description: Whether indirectly involved objects, like the <xref href="TinyLife.Objects.Furniture.ParentFurniture" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Objects.Furniture.GetChildren%60%601" data-throw-if-not-resolved="false"></xref> of furniture should be included
|
||||
description: Whether indirectly involved objects, like the <xref href="TinyLife.Objects.Furniture.ParentFurniture" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Objects.Furniture.GetChildren%60%601" data-throw-if-not-resolved="false"></xref> of furniture, as well as the <xref href="TinyLife.Objects.MapObject.HoldingPerson" data-throw-if-not-resolved="false"></xref> of objects, should be included
|
||||
- id: allowFake
|
||||
type: System.Boolean
|
||||
description: Whether fake items held by players (see <xref href="TinyLife.Objects.Person.SetHeldObject%60%601(TinyLife.Objects.FurnitureType%2cSystem.Int32%5b%5d%2cSystem.Nullable%7bSystem.Guid%7d%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref>) should also be returned.
|
||||
|
@ -671,7 +671,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromLocation
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 304
|
||||
startLine: 311
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -709,7 +709,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromLocation
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 315
|
||||
startLine: 322
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -747,7 +747,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromObjectGeneric
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 326
|
||||
startLine: 333
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -788,7 +788,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromObjectGeneric
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 336
|
||||
startLine: 343
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -826,7 +826,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromSelf
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 345
|
||||
startLine: 352
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -861,7 +861,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromActionInfo
|
||||
path: ../TinyLife/Actions/ActionInfo.cs
|
||||
startLine: 356
|
||||
startLine: 363
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -2118,6 +2118,12 @@ references:
|
|||
- uid: TinyLife.Objects.ActionSpot
|
||||
name: ActionSpot
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.HoldingPerson
|
||||
commentId: P:TinyLife.Objects.MapObject.HoldingPerson
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.Person.SetHeldObject``1(TinyLife.Objects.FurnitureType,System.Int32[],System.Nullable{System.Guid},System.Boolean)
|
||||
commentId: M:TinyLife.Objects.Person.SetHeldObject``1(TinyLife.Objects.FurnitureType,System.Int32[],System.Nullable{System.Guid},System.Boolean)
|
||||
isExternal: true
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -82,6 +82,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -114,6 +115,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -927,6 +929,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2809,6 +2827,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -80,6 +80,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -112,6 +113,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -1035,6 +1037,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2917,6 +2935,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -288,7 +288,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetInteractingItem
|
||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||
startLine: 146
|
||||
startLine: 147
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
|
@ -325,7 +325,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetInteractingItemForAction
|
||||
path: ../TinyLife/Actions/Behaviors/GetAndSitDownBehavior.cs
|
||||
startLine: 173
|
||||
startLine: 174
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
|
|
|
@ -9,6 +9,8 @@ items:
|
|||
- TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress
|
||||
- TinyLife.Actions.Behaviors.ReadBehavior.Initialize
|
||||
- TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
|
@ -23,7 +25,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ReadBehavior
|
||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
startLine: 9
|
||||
startLine: 12
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
|
@ -41,9 +43,7 @@ items:
|
|||
- TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.Behaviors.ActionBehavior.Action
|
||||
- TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
|
||||
- TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
- TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
|
||||
- TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
|
||||
- System.Object.Equals(System.Object)
|
||||
- System.Object.Equals(System.Object,System.Object)
|
||||
|
@ -72,7 +72,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FullyInProgress
|
||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
startLine: 12
|
||||
startLine: 15
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
|
@ -104,7 +104,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
startLine: 15
|
||||
startLine: 21
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
|
@ -152,7 +152,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Initialize
|
||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
startLine: 18
|
||||
startLine: 24
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
|
@ -163,6 +163,48 @@ items:
|
|||
content.vb: Public Overrides Sub Initialize()
|
||||
overridden: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
|
||||
overload: TinyLife.Actions.Behaviors.ReadBehavior.Initialize*
|
||||
- uid: TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
id: Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
parent: TinyLife.Actions.Behaviors.ReadBehavior
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Update(GameTime, TimeSpan, float)
|
||||
nameWithType: ReadBehavior.Update(GameTime, TimeSpan, float)
|
||||
fullName: TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Update
|
||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
startLine: 35
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
summary: "\nUpdates this action behavior every update frame.\nThis method is automatically called when using <xref href=\"TinyLife.Actions.BehaviorAction\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public override void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
|
||||
parameters:
|
||||
- id: time
|
||||
type: Microsoft.Xna.Framework.GameTime
|
||||
description: The game time
|
||||
- id: passedInGame
|
||||
type: System.TimeSpan
|
||||
description: The amount of time that has passed since the last update frame
|
||||
- id: speedMultiplier
|
||||
type: System.Single
|
||||
description: The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
|
||||
content.vb: Public Overrides Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
|
||||
overridden: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
overload: TinyLife.Actions.Behaviors.ReadBehavior.Update*
|
||||
nameWithType.vb: ReadBehavior.Update(GameTime, TimeSpan, Single)
|
||||
fullName.vb: TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
|
||||
name.vb: Update(GameTime, TimeSpan, Single)
|
||||
- uid: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action)
|
||||
id: CanMultitask(TinyLife.Actions.Action)
|
||||
|
@ -181,7 +223,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanMultitask
|
||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
startLine: 26
|
||||
startLine: 45
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
|
@ -199,6 +241,39 @@ items:
|
|||
content.vb: Public Overrides Function CanMultitask(other As Action) As Boolean
|
||||
overridden: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
||||
overload: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask*
|
||||
- uid: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
id: OnCompleted(TinyLife.Actions.CompletionType)
|
||||
parent: TinyLife.Actions.Behaviors.ReadBehavior
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: OnCompleted(CompletionType)
|
||||
nameWithType: ReadBehavior.OnCompleted(CompletionType)
|
||||
fullName: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnCompleted
|
||||
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
|
||||
startLine: 50
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions.Behaviors
|
||||
summary: "\nCauses any activities that this action behavior executes to be marked as completed.\nThis method is automatically called when using <xref href=\"TinyLife.Actions.BehaviorAction\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public override void OnCompleted(CompletionType completion)
|
||||
parameters:
|
||||
- id: completion
|
||||
type: TinyLife.Actions.CompletionType
|
||||
description: ''
|
||||
content.vb: Public Overrides Sub OnCompleted(completion As CompletionType)
|
||||
overridden: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
overload: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted*
|
||||
references:
|
||||
- uid: TinyLife.Actions.BehaviorAction`1
|
||||
commentId: T:TinyLife.Actions.BehaviorAction`1
|
||||
|
@ -332,57 +407,6 @@ references:
|
|||
name: CreateLastActions
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
name: Update(GameTime, TimeSpan, float)
|
||||
nameWithType: ActionBehavior.Update(GameTime, TimeSpan, float)
|
||||
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
|
||||
nameWithType.vb: ActionBehavior.Update(GameTime, TimeSpan, Single)
|
||||
fullName.vb: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
|
||||
name.vb: Update(GameTime, TimeSpan, Single)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
name: Update
|
||||
- name: (
|
||||
- uid: Microsoft.Xna.Framework.GameTime
|
||||
name: GameTime
|
||||
isExternal: true
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.TimeSpan
|
||||
name: TimeSpan
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Single
|
||||
name: float
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
name: Update
|
||||
- name: (
|
||||
- uid: Microsoft.Xna.Framework.GameTime
|
||||
name: GameTime
|
||||
isExternal: true
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.TimeSpan
|
||||
name: TimeSpan
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Single
|
||||
name: Single
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
|
||||
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
|
||||
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
||||
|
@ -399,26 +423,6 @@ references:
|
|||
name: GetIconObject
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
||||
name: OnCompleted(CompletionType)
|
||||
nameWithType: ActionBehavior.OnCompleted(CompletionType)
|
||||
fullName: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
name: OnCompleted
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
name: CompletionType
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
name: OnCompleted
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
name: CompletionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
|
||||
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
||||
|
@ -1021,6 +1025,118 @@ references:
|
|||
name: Initialize
|
||||
nameWithType: ReadBehavior.Initialize
|
||||
fullName: TinyLife.Actions.Behaviors.ReadBehavior.Initialize
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
name: Update(GameTime, TimeSpan, float)
|
||||
nameWithType: ActionBehavior.Update(GameTime, TimeSpan, float)
|
||||
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
|
||||
nameWithType.vb: ActionBehavior.Update(GameTime, TimeSpan, Single)
|
||||
fullName.vb: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
|
||||
name.vb: Update(GameTime, TimeSpan, Single)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
name: Update
|
||||
- name: (
|
||||
- uid: Microsoft.Xna.Framework.GameTime
|
||||
name: GameTime
|
||||
isExternal: true
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.TimeSpan
|
||||
name: TimeSpan
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Single
|
||||
name: float
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
name: Update
|
||||
- name: (
|
||||
- uid: Microsoft.Xna.Framework.GameTime
|
||||
name: GameTime
|
||||
isExternal: true
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.TimeSpan
|
||||
name: TimeSpan
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Single
|
||||
name: Single
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Behaviors.ReadBehavior.Update*
|
||||
commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.Update
|
||||
name: Update
|
||||
nameWithType: ReadBehavior.Update
|
||||
fullName: TinyLife.Actions.Behaviors.ReadBehavior.Update
|
||||
- uid: Microsoft.Xna.Framework.GameTime
|
||||
commentId: T:Microsoft.Xna.Framework.GameTime
|
||||
parent: Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
name: GameTime
|
||||
nameWithType: GameTime
|
||||
fullName: Microsoft.Xna.Framework.GameTime
|
||||
- uid: System.TimeSpan
|
||||
commentId: T:System.TimeSpan
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.timespan
|
||||
name: TimeSpan
|
||||
nameWithType: TimeSpan
|
||||
fullName: System.TimeSpan
|
||||
- uid: System.Single
|
||||
commentId: T:System.Single
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
name: float
|
||||
nameWithType: float
|
||||
fullName: float
|
||||
nameWithType.vb: Single
|
||||
fullName.vb: Single
|
||||
name.vb: Single
|
||||
- uid: Microsoft.Xna.Framework
|
||||
commentId: N:Microsoft.Xna.Framework
|
||||
isExternal: true
|
||||
name: Microsoft.Xna.Framework
|
||||
nameWithType: Microsoft.Xna.Framework
|
||||
fullName: Microsoft.Xna.Framework
|
||||
spec.csharp:
|
||||
- uid: Microsoft
|
||||
name: Microsoft
|
||||
isExternal: true
|
||||
- name: .
|
||||
- uid: Microsoft.Xna
|
||||
name: Xna
|
||||
isExternal: true
|
||||
- name: .
|
||||
- uid: Microsoft.Xna.Framework
|
||||
name: Framework
|
||||
isExternal: true
|
||||
spec.vb:
|
||||
- uid: Microsoft
|
||||
name: Microsoft
|
||||
isExternal: true
|
||||
- name: .
|
||||
- uid: Microsoft.Xna
|
||||
name: Xna
|
||||
isExternal: true
|
||||
- name: .
|
||||
- uid: Microsoft.Xna.Framework
|
||||
name: Framework
|
||||
isExternal: true
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
|
||||
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
||||
|
@ -1046,3 +1162,34 @@ references:
|
|||
name: CanMultitask
|
||||
nameWithType: ReadBehavior.CanMultitask
|
||||
fullName: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
parent: TinyLife.Actions.Behaviors.ActionBehavior
|
||||
name: OnCompleted(CompletionType)
|
||||
nameWithType: ActionBehavior.OnCompleted(CompletionType)
|
||||
fullName: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
name: OnCompleted
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
name: CompletionType
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
|
||||
name: OnCompleted
|
||||
- name: (
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
name: CompletionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted*
|
||||
commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted
|
||||
name: OnCompleted
|
||||
nameWithType: ReadBehavior.OnCompleted
|
||||
fullName: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted
|
||||
- uid: TinyLife.Actions.CompletionType
|
||||
commentId: T:TinyLife.Actions.CompletionType
|
||||
parent: TinyLife.Actions
|
||||
name: CompletionType
|
||||
nameWithType: CompletionType
|
||||
fullName: TinyLife.Actions.CompletionType
|
||||
|
|
|
@ -65,6 +65,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -97,6 +98,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -753,6 +755,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2635,6 +2653,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -66,6 +66,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -98,6 +99,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -827,6 +829,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2709,6 +2727,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -65,6 +65,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.Action.GetIconObject
|
||||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -97,6 +98,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -383,7 +385,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsCompleted
|
||||
path: ../TinyLife/Actions/DieAction.cs
|
||||
startLine: 90
|
||||
startLine: 96
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -415,7 +417,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnCompleted
|
||||
path: ../TinyLife/Actions/DieAction.cs
|
||||
startLine: 95
|
||||
startLine: 101
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -448,7 +450,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Enqueue
|
||||
path: ../TinyLife/Actions/DieAction.cs
|
||||
startLine: 107
|
||||
startLine: 113
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -813,6 +815,22 @@ references:
|
|||
name: CausesExtremelyFastSpeed
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2695,6 +2713,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -78,6 +78,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -110,6 +111,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -947,6 +949,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2829,6 +2847,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -13,6 +13,7 @@ items:
|
|||
- TinyLife.Actions.HelpAction.CreateFirstActions
|
||||
- TinyLife.Actions.HelpAction.CreateHelpedAction(TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.HelpAction.GetNextAction(TinyLife.Actions.CompletionType)
|
||||
- TinyLife.Actions.HelpAction.GetProgress
|
||||
- TinyLife.Actions.HelpAction.HelpedAction
|
||||
- TinyLife.Actions.HelpAction.Helper
|
||||
- TinyLife.Actions.HelpAction.InitializeConversation
|
||||
|
@ -134,6 +135,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -538,6 +540,38 @@ items:
|
|||
content.vb: Public Overrides Function GetNextAction(completion As CompletionType) As Action
|
||||
overridden: TinyLife.Actions.Action.GetNextAction(TinyLife.Actions.CompletionType)
|
||||
overload: TinyLife.Actions.HelpAction.GetNextAction*
|
||||
- uid: TinyLife.Actions.HelpAction.GetProgress
|
||||
commentId: M:TinyLife.Actions.HelpAction.GetProgress
|
||||
id: GetProgress
|
||||
parent: TinyLife.Actions.HelpAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetProgress()
|
||||
nameWithType: HelpAction.GetProgress()
|
||||
fullName: TinyLife.Actions.HelpAction.GetProgress()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/HelpAction.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetProgress
|
||||
path: ../TinyLife/Actions/HelpAction.cs
|
||||
startLine: 96
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nOptionally returns the progress that this action's execution currently exhibits, in a range between 0 and 1.\nThe returned progress will be displayed below the action icon in the top left as a green bar that is expected to fill up slowly as progress is made.\nReturning an empty value causes no progress bar to be displayed, and is also the default behavior.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public override float? GetProgress()
|
||||
return:
|
||||
type: System.Nullable{System.Single}
|
||||
description: This action's progress.
|
||||
content.vb: Public Overrides Function GetProgress() As Single?
|
||||
overridden: TinyLife.Actions.Action.GetProgress
|
||||
overload: TinyLife.Actions.HelpAction.GetProgress*
|
||||
- uid: TinyLife.Actions.HelpAction.CreateFirstActions
|
||||
commentId: M:TinyLife.Actions.HelpAction.CreateFirstActions
|
||||
id: CreateFirstActions
|
||||
|
@ -556,7 +590,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CreateFirstActions
|
||||
path: ../TinyLife/Actions/HelpAction.cs
|
||||
startLine: 96
|
||||
startLine: 101
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -588,7 +622,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InitializeConversation
|
||||
path: ../TinyLife/Actions/HelpAction.cs
|
||||
startLine: 103
|
||||
startLine: 108
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -617,7 +651,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateConversation
|
||||
path: ../TinyLife/Actions/HelpAction.cs
|
||||
startLine: 111
|
||||
startLine: 116
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -659,7 +693,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenOnCompleted
|
||||
path: ../TinyLife/Actions/HelpAction.cs
|
||||
startLine: 135
|
||||
startLine: 140
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -692,7 +726,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnChildCompleted
|
||||
path: ../TinyLife/Actions/HelpAction.cs
|
||||
startLine: 141
|
||||
startLine: 146
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -734,7 +768,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CreateActions
|
||||
path: ../TinyLife/Actions/HelpAction.cs
|
||||
startLine: 161
|
||||
startLine: 166
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -3609,6 +3643,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
@ -4412,6 +4487,78 @@ references:
|
|||
name: GetNextAction
|
||||
nameWithType: HelpAction.GetNextAction
|
||||
fullName: TinyLife.Actions.HelpAction.GetNextAction
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.HelpAction.GetProgress*
|
||||
commentId: Overload:TinyLife.Actions.HelpAction.GetProgress
|
||||
name: GetProgress
|
||||
nameWithType: HelpAction.GetProgress
|
||||
fullName: TinyLife.Actions.HelpAction.GetProgress
|
||||
- uid: System.Nullable{System.Single}
|
||||
commentId: T:System.Nullable{System.Single}
|
||||
parent: System
|
||||
definition: System.Nullable`1
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
name: float?
|
||||
nameWithType: float?
|
||||
fullName: float?
|
||||
nameWithType.vb: Single?
|
||||
fullName.vb: Single?
|
||||
name.vb: Single?
|
||||
spec.csharp:
|
||||
- uid: System.Single
|
||||
name: float
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: '?'
|
||||
spec.vb:
|
||||
- uid: System.Single
|
||||
name: Single
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.single
|
||||
- name: '?'
|
||||
- uid: System.Nullable`1
|
||||
commentId: T:System.Nullable`1
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
name: Nullable<T>
|
||||
nameWithType: Nullable<T>
|
||||
fullName: System.Nullable<T>
|
||||
nameWithType.vb: Nullable(Of T)
|
||||
fullName.vb: System.Nullable(Of T)
|
||||
name.vb: Nullable(Of T)
|
||||
spec.csharp:
|
||||
- uid: System.Nullable`1
|
||||
name: Nullable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Nullable`1
|
||||
name: Nullable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.SocialAction.CreateFirstActions
|
||||
commentId: M:TinyLife.Actions.SocialAction.CreateFirstActions
|
||||
parent: TinyLife.Actions.SocialAction
|
||||
|
@ -4823,31 +4970,3 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType.TypeSettings
|
||||
name: TypeSettings
|
||||
- name: )
|
||||
- uid: System.Nullable`1
|
||||
commentId: T:System.Nullable`1
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
name: Nullable<T>
|
||||
nameWithType: Nullable<T>
|
||||
fullName: System.Nullable<T>
|
||||
nameWithType.vb: Nullable(Of T)
|
||||
fullName.vb: System.Nullable(Of T)
|
||||
name.vb: Nullable(Of T)
|
||||
spec.csharp:
|
||||
- uid: System.Nullable`1
|
||||
name: Nullable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Nullable`1
|
||||
name: Nullable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
|
|
|
@ -96,6 +96,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetIconObject
|
||||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -128,6 +129,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -1394,6 +1396,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -3276,6 +3294,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -86,6 +86,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -118,6 +119,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -1168,6 +1170,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -3050,6 +3068,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -5,6 +5,7 @@ items:
|
|||
id: OrderFromStaffAction
|
||||
parent: TinyLife.Actions
|
||||
children:
|
||||
- TinyLife.Actions.OrderFromStaffAction.#ctor(TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.OrderFromStaffAction.#ctor(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.OrderFromStaffAction.CanMultitask(TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.OrderFromStaffAction.CreateFirstActions
|
||||
|
@ -98,6 +99,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetIconObject
|
||||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -130,6 +132,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -274,6 +277,41 @@ items:
|
|||
nameWithType.vb: OrderFromStaffAction.New(ActionType, ActionInfo)
|
||||
fullName.vb: TinyLife.Actions.OrderFromStaffAction.New(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo)
|
||||
name.vb: New(ActionType, ActionInfo)
|
||||
- uid: TinyLife.Actions.OrderFromStaffAction.#ctor(TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.OrderFromStaffAction.#ctor(TinyLife.Actions.ActionInfo)
|
||||
id: '#ctor(TinyLife.Actions.ActionInfo)'
|
||||
parent: TinyLife.Actions.OrderFromStaffAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: OrderFromStaffAction(ActionInfo)
|
||||
nameWithType: OrderFromStaffAction.OrderFromStaffAction(ActionInfo)
|
||||
fullName: TinyLife.Actions.OrderFromStaffAction.OrderFromStaffAction(TinyLife.Actions.ActionInfo)
|
||||
type: Constructor
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Actions/OrderFromStaffAction.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||
startLine: 33
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nCreates a new typeless action with the given action information.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: protected OrderFromStaffAction(ActionInfo info)
|
||||
parameters:
|
||||
- id: info
|
||||
type: TinyLife.Actions.ActionInfo
|
||||
description: The information for this action.
|
||||
content.vb: Protected Sub New(info As ActionInfo)
|
||||
overload: TinyLife.Actions.OrderFromStaffAction.#ctor*
|
||||
nameWithType.vb: OrderFromStaffAction.New(ActionInfo)
|
||||
fullName.vb: TinyLife.Actions.OrderFromStaffAction.New(TinyLife.Actions.ActionInfo)
|
||||
name.vb: New(ActionInfo)
|
||||
- uid: TinyLife.Actions.OrderFromStaffAction.CreatePrepareAction(TinyLife.Actions.ActionInfo)
|
||||
commentId: M:TinyLife.Actions.OrderFromStaffAction.CreatePrepareAction(TinyLife.Actions.ActionInfo)
|
||||
id: CreatePrepareAction(TinyLife.Actions.ActionInfo)
|
||||
|
@ -292,7 +330,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CreatePrepareAction
|
||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||
startLine: 37
|
||||
startLine: 40
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -327,7 +365,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CreateFirstActions
|
||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||
startLine: 40
|
||||
startLine: 43
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -359,7 +397,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateConversation
|
||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||
startLine: 64
|
||||
startLine: 67
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -401,7 +439,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsConversationCompleted
|
||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||
startLine: 71
|
||||
startLine: 74
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -433,7 +471,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanMultitask
|
||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||
startLine: 76
|
||||
startLine: 79
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -469,7 +507,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetNextAction
|
||||
path: ../TinyLife/Actions/OrderFromStaffAction.cs
|
||||
startLine: 81
|
||||
startLine: 84
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1455,6 +1493,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -3337,6 +3391,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -79,6 +79,7 @@ items:
|
|||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.GetIconObject
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -111,6 +112,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -921,6 +923,22 @@ references:
|
|||
name: GetDisplayName
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2803,6 +2821,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -71,6 +71,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -103,6 +104,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -346,7 +348,7 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nThis method is called when the <xref href=\"TinyLife.Actions.PathfindAction.PathReady\" data-throw-if-not-resolved=\"false\"></xref> variable is set to true.\nAt the point of this method being claled, <xref href=\"TinyLife.Actions.PathfindAction.Path\" data-throw-if-not-resolved=\"false\"></xref> will have a value.\n"
|
||||
summary: "\nThis method is called right before the <xref href=\"TinyLife.Actions.PathfindAction.PathReady\" data-throw-if-not-resolved=\"false\"></xref> variable is set to true.\nAt the point of this method being called, <xref href=\"TinyLife.Actions.PathfindAction.Path\" data-throw-if-not-resolved=\"false\"></xref> will have a value.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: protected virtual void OnPathReady()
|
||||
|
@ -847,6 +849,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2729,6 +2747,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -67,6 +67,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -99,6 +100,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -807,6 +809,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2689,6 +2707,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -76,6 +76,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -108,6 +109,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -860,6 +862,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2742,6 +2760,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -77,6 +77,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -109,6 +110,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -908,6 +910,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2790,6 +2808,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -76,6 +76,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -108,6 +109,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -869,6 +871,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2751,6 +2769,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StartPartnerAction
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 300
|
||||
startLine: 305
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -63,6 +63,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -95,6 +96,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -126,7 +128,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 303
|
||||
startLine: 308
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -161,7 +163,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Initialize
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 306
|
||||
startLine: 311
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -190,7 +192,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsCompleted
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 334
|
||||
startLine: 339
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -612,6 +614,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2494,6 +2512,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -99,6 +99,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetIconObject
|
||||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -131,6 +132,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -475,7 +477,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InitializeConversation
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 72
|
||||
startLine: 77
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -503,7 +505,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateConversation
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 82
|
||||
startLine: 87
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -544,7 +546,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsConversationCompleted
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 92
|
||||
startLine: 97
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -575,7 +577,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetMaxWaitTime
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 101
|
||||
startLine: 106
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -606,7 +608,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EnqueuePartnerAction
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 111
|
||||
startLine: 116
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -641,7 +643,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPartnerVariety
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 121
|
||||
startLine: 126
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -676,7 +678,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnBothCompleted
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 130
|
||||
startLine: 135
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -708,7 +710,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenUpdate
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 133
|
||||
startLine: 138
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -750,7 +752,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenIsCompleted
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 140
|
||||
startLine: 145
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -782,7 +784,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenInitialize
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 155
|
||||
startLine: 160
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -811,7 +813,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AndThenOnCompleted
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 165
|
||||
startLine: 170
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -844,7 +846,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanCancel
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 175
|
||||
startLine: 180
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -880,7 +882,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanMultitask
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 182
|
||||
startLine: 187
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -916,7 +918,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanStartNow
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 193
|
||||
startLine: 198
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -948,7 +950,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDisplayName
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 201
|
||||
startLine: 206
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -980,7 +982,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TryForceResult
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 206
|
||||
startLine: 211
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1022,7 +1024,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InvokeForBoth
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 219
|
||||
startLine: 224
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1057,7 +1059,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsHelper
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 229
|
||||
startLine: 234
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1095,7 +1097,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetHelper
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 239
|
||||
startLine: 244
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1133,7 +1135,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRecipientAction
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 249
|
||||
startLine: 254
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1171,7 +1173,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CreateAskOffer
|
||||
path: ../TinyLife/Actions/SocialAction.cs
|
||||
startLine: 267
|
||||
startLine: 272
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -1644,6 +1646,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -3526,6 +3544,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -76,6 +76,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -108,6 +109,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -881,6 +883,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2763,6 +2781,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -102,6 +102,7 @@ items:
|
|||
- TinyLife.Actions.Action.GetIconObject
|
||||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -134,6 +135,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -1675,6 +1677,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -3557,6 +3575,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -65,6 +65,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -97,6 +98,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -715,6 +717,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2597,6 +2615,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -64,6 +64,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -96,6 +97,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -683,6 +685,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2565,6 +2583,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -71,6 +71,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -103,6 +104,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -740,6 +742,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2622,6 +2640,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -79,6 +79,7 @@ items:
|
|||
- TinyLife.Actions.Action.CausesExtremelyFastSpeed
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.CanEnqueueConversation(TinyLife.Objects.Person,TinyLife.Actions.ActionType)
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -111,6 +112,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -1155,6 +1157,22 @@ references:
|
|||
- uid: TinyLife.Actions.ActionType
|
||||
name: ActionType
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -3037,6 +3055,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -79,6 +79,7 @@ items:
|
|||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.GetIconObject
|
||||
- TinyLife.Actions.Action.GetDisplayName
|
||||
- TinyLife.Actions.Action.GetProgress
|
||||
- TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
- TinyLife.Actions.Action.OpenPlayerPrompt(System.String,System.Predicate{MLEM.Ui.Elements.Panel},System.Action{MLEM.Ui.Elements.Panel},System.Boolean,System.Func{TinyLife.Uis.CoveringGroup,System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}},MLEM.Textures.TextureRegion)
|
||||
- TinyLife.Actions.Action.OpenYesNoPrompt(System.String,System.Action,System.Action,MLEM.Textures.TextureRegion)
|
||||
|
@ -111,6 +112,7 @@ items:
|
|||
- TinyLife.Actions.Action.InvokeForBoth(TinyLife.Objects.Person,TinyLife.Objects.Person,System.Action{TinyLife.Objects.Person,TinyLife.Objects.Person})
|
||||
- TinyLife.Actions.Action.CanMultitask(TinyLife.Actions.Action,TinyLife.Actions.Action)
|
||||
- TinyLife.Actions.Action.IsInappropriate(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo)
|
||||
- TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
|
||||
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
||||
|
@ -924,6 +926,22 @@ references:
|
|||
name: GetDisplayName
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
commentId: M:TinyLife.Actions.Action.GetProgress
|
||||
parent: TinyLife.Actions.Action
|
||||
name: GetProgress()
|
||||
nameWithType: Action.GetProgress()
|
||||
fullName: TinyLife.Actions.Action.GetProgress()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.GetProgress
|
||||
name: GetProgress
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
commentId: M:TinyLife.Actions.Action.OnChildCompleted(TinyLife.Actions.Action,TinyLife.Actions.CompletionType,System.Boolean)
|
||||
parent: TinyLife.Actions.Action
|
||||
|
@ -2806,6 +2824,47 @@ references:
|
|||
- uid: TinyLife.Actions.ActionInfo
|
||||
name: ActionInfo
|
||||
- name: )
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
commentId: M:TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
parent: TinyLife.Actions.Action
|
||||
isExternal: true
|
||||
name: IsLotContentVisible(Lot, Person, Vector2?)
|
||||
nameWithType: Action.IsLotContentVisible(Lot, Person, Vector2?)
|
||||
fullName: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot, TinyLife.Objects.Person, Microsoft.Xna.Framework.Vector2?)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Actions.Action.IsLotContentVisible(TinyLife.World.Lot,TinyLife.Objects.Person,System.Nullable{Microsoft.Xna.Framework.Vector2})
|
||||
name: IsLotContentVisible
|
||||
- name: (
|
||||
- uid: TinyLife.World.Lot
|
||||
name: Lot
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: Microsoft.Xna.Framework.Vector2
|
||||
name: Vector2
|
||||
isExternal: true
|
||||
- name: '?'
|
||||
- name: )
|
||||
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
||||
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CheatDelegate
|
||||
path: ../TinyLife/Debug.cs
|
||||
startLine: 783
|
||||
startLine: 788
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DebugDelegate
|
||||
path: ../TinyLife/Debug.cs
|
||||
startLine: 788
|
||||
startLine: 793
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -119,7 +119,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TryCheat
|
||||
path: ../TinyLife/Debug.cs
|
||||
startLine: 612
|
||||
startLine: 603
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -27,7 +27,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Instance
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 443
|
||||
startLine: 446
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -76,7 +76,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Type
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 450
|
||||
startLine: 453
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -115,7 +115,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Amount
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 455
|
||||
startLine: 458
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -154,7 +154,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TotalTime
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 460
|
||||
startLine: 463
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -193,7 +193,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Time
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 465
|
||||
startLine: 468
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -234,7 +234,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SourceString
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 471
|
||||
startLine: 474
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -275,7 +275,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Person
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 476
|
||||
startLine: 479
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -306,7 +306,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PassTime
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 493
|
||||
startLine: 496
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -338,7 +338,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 507
|
||||
startLine: 510
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
|
|
@ -52,6 +52,7 @@ items:
|
|||
- TinyLife.Emotions.EmotionModifier.DirtyHandsAfterToilet
|
||||
- TinyLife.Emotions.EmotionModifier.DirtyObject
|
||||
- TinyLife.Emotions.EmotionModifier.DisplayName
|
||||
- TinyLife.Emotions.EmotionModifier.Drunk
|
||||
- TinyLife.Emotions.EmotionModifier.EmbarrassingWorkConversation
|
||||
- TinyLife.Emotions.EmotionModifier.EmergencyFood
|
||||
- TinyLife.Emotions.EmotionModifier.Emotion
|
||||
|
@ -168,6 +169,7 @@ items:
|
|||
- TinyLife.Emotions.EmotionModifier.ShoodChild
|
||||
- TinyLife.Emotions.EmotionModifier.SkilledOrder
|
||||
- TinyLife.Emotions.EmotionModifier.SleptOutside
|
||||
- TinyLife.Emotions.EmotionModifier.SlightlyDrunk
|
||||
- TinyLife.Emotions.EmotionModifier.SomeoneTriedMyFood
|
||||
- TinyLife.Emotions.EmotionModifier.StandingDeskPositive
|
||||
- TinyLife.Emotions.EmotionModifier.StandingDeskSore
|
||||
|
@ -194,6 +196,7 @@ items:
|
|||
- TinyLife.Emotions.EmotionModifier.UpsettingConversation
|
||||
- TinyLife.Emotions.EmotionModifier.UsefulProgrammingResearch
|
||||
- TinyLife.Emotions.EmotionModifier.VacationDaysAgain
|
||||
- TinyLife.Emotions.EmotionModifier.VeryDrunk
|
||||
- TinyLife.Emotions.EmotionModifier.WonTournament
|
||||
- TinyLife.Emotions.EmotionModifier.WoodworkingSplinter
|
||||
- TinyLife.Emotions.EmotionModifier.WritersBlock
|
||||
|
@ -5154,6 +5157,87 @@ items:
|
|||
return:
|
||||
type: TinyLife.Emotions.EmotionModifier
|
||||
content.vb: Public Shared ReadOnly PregnancyTestNegative As EmotionModifier
|
||||
- uid: TinyLife.Emotions.EmotionModifier.SlightlyDrunk
|
||||
commentId: F:TinyLife.Emotions.EmotionModifier.SlightlyDrunk
|
||||
id: SlightlyDrunk
|
||||
parent: TinyLife.Emotions.EmotionModifier
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: SlightlyDrunk
|
||||
nameWithType: EmotionModifier.SlightlyDrunk
|
||||
fullName: TinyLife.Emotions.EmotionModifier.SlightlyDrunk
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Emotions/EmotionModifier.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SlightlyDrunk
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 229
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
syntax:
|
||||
content: public static readonly EmotionModifier SlightlyDrunk
|
||||
return:
|
||||
type: TinyLife.Emotions.EmotionModifier
|
||||
content.vb: Public Shared ReadOnly SlightlyDrunk As EmotionModifier
|
||||
- uid: TinyLife.Emotions.EmotionModifier.Drunk
|
||||
commentId: F:TinyLife.Emotions.EmotionModifier.Drunk
|
||||
id: Drunk
|
||||
parent: TinyLife.Emotions.EmotionModifier
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Drunk
|
||||
nameWithType: EmotionModifier.Drunk
|
||||
fullName: TinyLife.Emotions.EmotionModifier.Drunk
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Emotions/EmotionModifier.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Drunk
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 230
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
syntax:
|
||||
content: public static readonly EmotionModifier Drunk
|
||||
return:
|
||||
type: TinyLife.Emotions.EmotionModifier
|
||||
content.vb: Public Shared ReadOnly Drunk As EmotionModifier
|
||||
- uid: TinyLife.Emotions.EmotionModifier.VeryDrunk
|
||||
commentId: F:TinyLife.Emotions.EmotionModifier.VeryDrunk
|
||||
id: VeryDrunk
|
||||
parent: TinyLife.Emotions.EmotionModifier
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: VeryDrunk
|
||||
nameWithType: EmotionModifier.VeryDrunk
|
||||
fullName: TinyLife.Emotions.EmotionModifier.VeryDrunk
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Emotions/EmotionModifier.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VeryDrunk
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 231
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
syntax:
|
||||
content: public static readonly EmotionModifier VeryDrunk
|
||||
return:
|
||||
type: TinyLife.Emotions.EmotionModifier
|
||||
content.vb: Public Shared ReadOnly VeryDrunk As EmotionModifier
|
||||
- uid: TinyLife.Emotions.EmotionModifier.Name
|
||||
commentId: F:TinyLife.Emotions.EmotionModifier.Name
|
||||
id: Name
|
||||
|
@ -5172,7 +5256,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 323
|
||||
startLine: 326
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5201,7 +5285,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Icon
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 327
|
||||
startLine: 330
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5230,7 +5314,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Emotion
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 332
|
||||
startLine: 335
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5259,7 +5343,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Condition
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 338
|
||||
startLine: 341
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5288,7 +5372,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DisplayName
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 345
|
||||
startLine: 348
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5319,7 +5403,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 354
|
||||
startLine: 357
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5363,7 +5447,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 368
|
||||
startLine: 371
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5407,7 +5491,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetCausedEmotion
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 377
|
||||
startLine: 380
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5442,7 +5526,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDisplayName
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 393
|
||||
startLine: 396
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
@ -5481,7 +5565,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/Emotions/EmotionModifier.cs
|
||||
startLine: 406
|
||||
startLine: 409
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Emotions
|
||||
|
|
|
@ -26,7 +26,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GameMode
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1118
|
||||
startLine: 1120
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -55,7 +55,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InitialLoad
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1121
|
||||
startLine: 1123
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -83,7 +83,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Splash
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1123
|
||||
startLine: 1125
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -111,7 +111,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MainMenu
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1125
|
||||
startLine: 1127
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -139,7 +139,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SelectHousehold
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1127
|
||||
startLine: 1129
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -167,7 +167,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InGameHousehold
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1129
|
||||
startLine: 1131
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -195,7 +195,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BuildOnly
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1131
|
||||
startLine: 1133
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -223,7 +223,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CharacterCreation
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1133
|
||||
startLine: 1135
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -812,7 +812,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Dispose
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 602
|
||||
startLine: 603
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -846,7 +846,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RotateCamera
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 620
|
||||
startLine: 621
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -881,7 +881,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsCursorOnUi
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 636
|
||||
startLine: 637
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -912,7 +912,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SwitchGameMode
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 648
|
||||
startLine: 649
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -944,7 +944,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanBeExtremelyFast
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 742
|
||||
startLine: 743
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -975,7 +975,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanSwitchGameModes
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 753
|
||||
startLine: 754
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1006,7 +1006,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FadeKeyboardLighting
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 768
|
||||
startLine: 769
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1038,7 +1038,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TakeScreenshot
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 794
|
||||
startLine: 795
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1079,7 +1079,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MarkLotVisible
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 822
|
||||
startLine: 823
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1111,7 +1111,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MarkLotNonVisible
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 838
|
||||
startLine: 839
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1143,7 +1143,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsLotVisible
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 849
|
||||
startLine: 850
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1178,7 +1178,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CompleteAchievement
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 861
|
||||
startLine: 862
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -29,7 +29,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Instance
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 215
|
||||
startLine: 216
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -78,7 +78,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Goal
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 222
|
||||
startLine: 223
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -117,7 +117,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CurrentGoals
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 226
|
||||
startLine: 227
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -158,7 +158,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StageIndex
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 233
|
||||
startLine: 234
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -199,7 +199,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Person
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 238
|
||||
startLine: 239
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -230,7 +230,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Stage
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 243
|
||||
startLine: 244
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -261,7 +261,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Completed
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 247
|
||||
startLine: 248
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -292,7 +292,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 255
|
||||
startLine: 256
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -333,7 +333,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Update
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 267
|
||||
startLine: 268
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -361,7 +361,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Advance
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 277
|
||||
startLine: 278
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -389,7 +389,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 302
|
||||
startLine: 303
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
|
|
@ -301,7 +301,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CapableCarpenter
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 125
|
||||
startLine: 126
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -328,7 +328,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GymRat
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 137
|
||||
startLine: 138
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -355,7 +355,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnAdvanced
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 155
|
||||
startLine: 156
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -384,7 +384,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnCompleted
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 159
|
||||
startLine: 160
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -413,7 +413,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 164
|
||||
startLine: 165
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -442,7 +442,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Stages
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 168
|
||||
startLine: 169
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -471,7 +471,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RewardPersonality
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 173
|
||||
startLine: 174
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -500,7 +500,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AllowedAges
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 178
|
||||
startLine: 179
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -531,7 +531,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 186
|
||||
startLine: 187
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -572,7 +572,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsCompleted
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 197
|
||||
startLine: 198
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
@ -607,7 +607,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/Goals/LifeGoal.cs
|
||||
startLine: 206
|
||||
startLine: 207
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Goals
|
||||
|
|
|
@ -35,7 +35,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LnCategory
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 190
|
||||
startLine: 191
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -64,7 +64,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Ui
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 193
|
||||
startLine: 194
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -92,7 +92,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Actions
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 195
|
||||
startLine: 196
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -120,7 +120,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BuildMode
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 197
|
||||
startLine: 198
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -148,7 +148,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Clothes
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 199
|
||||
startLine: 200
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -176,7 +176,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Food
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 201
|
||||
startLine: 202
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -204,7 +204,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Personalities
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 203
|
||||
startLine: 204
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -232,7 +232,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Skills
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 205
|
||||
startLine: 206
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -260,7 +260,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Jobs
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 207
|
||||
startLine: 208
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -288,7 +288,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Emotions
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 209
|
||||
startLine: 210
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -316,7 +316,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Hints
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 211
|
||||
startLine: 212
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -344,7 +344,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InGameHints
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 213
|
||||
startLine: 214
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -372,7 +372,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Goals
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 215
|
||||
startLine: 216
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -400,7 +400,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Names
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 217
|
||||
startLine: 218
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -428,7 +428,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChoicePrompts
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 219
|
||||
startLine: 220
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -456,7 +456,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Achievements
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 221
|
||||
startLine: 222
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -484,7 +484,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Overrides
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 223
|
||||
startLine: 224
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -26,7 +26,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Localization
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 22
|
||||
startLine: 23
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -63,7 +63,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LanguageNames
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 27
|
||||
startLine: 28
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -92,11 +92,11 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Names
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 32
|
||||
startLine: 33
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
summary: "\nA dictionary that maps a key to all of the names matching the specified key.\nBy default, this dictionary contains "FirstNames" and "LastNames", which are the randomly generated names for people, and "ModNames", which are the default names for the <xref href=\"TinyLife.Actions.ActionType.ModGame\" data-throw-if-not-resolved=\"false\"></xref> action.\n"
|
||||
summary: "\nA dictionary that maps a key to all of the names matching the specified key.\nBy default, this dictionary contains "MasculineFirstNames", "FeminineFirstNames" and "LastNames", which are the randomly generated names for people, and "ModNames", which are the default names for the <xref href=\"TinyLife.Actions.ActionType.ModGame\" data-throw-if-not-resolved=\"false\"></xref> action.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static readonly Dictionary<string, string[]> Names
|
||||
|
@ -121,7 +121,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetLanguage
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 50
|
||||
startLine: 51
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -156,7 +156,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Reload
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 61
|
||||
startLine: 62
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -184,7 +184,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Get
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 86
|
||||
startLine: 87
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -225,7 +225,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Get
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 104
|
||||
startLine: 105
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -269,7 +269,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetKeys
|
||||
path: ../TinyLife/Localization.cs
|
||||
startLine: 113
|
||||
startLine: 114
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -138,7 +138,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Hunger
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 116
|
||||
startLine: 118
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -165,7 +165,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Social
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 123
|
||||
startLine: 125
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -192,7 +192,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Toilet
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 134
|
||||
startLine: 136
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -219,7 +219,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Hygiene
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 141
|
||||
startLine: 143
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -246,7 +246,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Entertainment
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 142
|
||||
startLine: 144
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -273,7 +273,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 149
|
||||
startLine: 151
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -302,7 +302,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PassiveReduction
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 153
|
||||
startLine: 155
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -331,7 +331,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NeedLowAction
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 157
|
||||
startLine: 159
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -360,7 +360,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NeedLowTime
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 161
|
||||
startLine: 163
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -389,7 +389,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SolveImportance
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 166
|
||||
startLine: 168
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -418,7 +418,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SolvePercentage
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 170
|
||||
startLine: 172
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -447,7 +447,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SourceString
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 172
|
||||
startLine: 174
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -480,7 +480,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 183
|
||||
startLine: 185
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -530,7 +530,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/Need.cs
|
||||
startLine: 197
|
||||
startLine: 199
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AgeGroup
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3397
|
||||
startLine: 3416
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -63,7 +63,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Baby
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3404
|
||||
startLine: 3423
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -91,7 +91,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Child
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3410
|
||||
startLine: 3429
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -119,7 +119,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Adult
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3416
|
||||
startLine: 3435
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -111,6 +111,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -122,6 +123,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2043,6 +2045,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2109,6 +2117,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
3629
docs/api/TinyLife.Objects.Book.yml
Normal file
3629
docs/api/TinyLife.Objects.Book.yml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -24,7 +24,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BrokenBehavior
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 173
|
||||
startLine: 175
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -63,7 +63,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Puddles
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 179
|
||||
startLine: 181
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -91,7 +91,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Dripping
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 183
|
||||
startLine: 185
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -119,7 +119,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ElectricityCrackle
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 187
|
||||
startLine: 189
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -147,7 +147,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Smoke
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 191
|
||||
startLine: 193
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -175,7 +175,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Electrocution
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 195
|
||||
startLine: 197
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -118,6 +118,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -129,6 +130,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -483,7 +485,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPrice
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 143
|
||||
startLine: 145
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -513,7 +515,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDescription
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 148
|
||||
startLine: 150
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -552,7 +554,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDecorativeRating
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 160
|
||||
startLine: 162
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -588,7 +590,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnRemoved
|
||||
path: ../TinyLife/Objects/BreakableFurniture.cs
|
||||
startLine: 165
|
||||
startLine: 167
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2361,6 +2363,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2427,6 +2435,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -112,6 +112,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -123,6 +124,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2159,6 +2161,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2225,6 +2233,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -5,7 +5,7 @@ items:
|
|||
id: Clothes
|
||||
parent: TinyLife.Objects
|
||||
children:
|
||||
- TinyLife.Objects.Clothes.#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Utilities.ColorScheme[])
|
||||
- TinyLife.Objects.Clothes.#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Objects.StylePreference,TinyLife.Utilities.ColorScheme[])
|
||||
- TinyLife.Objects.Clothes.Ages
|
||||
- TinyLife.Objects.Clothes.AllIntentions
|
||||
- TinyLife.Objects.Clothes.AreCompatible(TinyLife.Objects.Clothes,TinyLife.Objects.Clothes)
|
||||
|
@ -13,7 +13,6 @@ items:
|
|||
- TinyLife.Objects.Clothes.DepthFunction
|
||||
- TinyLife.Objects.Clothes.Description
|
||||
- TinyLife.Objects.Clothes.GetDescription(TinyLife.Objects.Person)
|
||||
- TinyLife.Objects.Clothes.GetPrice
|
||||
- TinyLife.Objects.Clothes.Icon
|
||||
- TinyLife.Objects.Clothes.Intentions
|
||||
- TinyLife.Objects.Clothes.IsIncompatible
|
||||
|
@ -28,6 +27,8 @@ items:
|
|||
- TinyLife.Objects.Clothes.ReferencePrice
|
||||
- TinyLife.Objects.Clothes.Register(TinyLife.Objects.Clothes)
|
||||
- TinyLife.Objects.Clothes.SourceString
|
||||
- TinyLife.Objects.Clothes.StylePreference
|
||||
- TinyLife.Objects.Clothes.StylePreferences
|
||||
- TinyLife.Objects.Clothes.TextureBehaviorLayer
|
||||
- TinyLife.Objects.Clothes.TextureRegion
|
||||
- TinyLife.Objects.Clothes.Textures
|
||||
|
@ -162,6 +163,35 @@ items:
|
|||
return:
|
||||
type: TinyLife.Objects.ClothesIntention[]
|
||||
content.vb: Public Shared ReadOnly AllIntentions As ClothesIntention()
|
||||
- uid: TinyLife.Objects.Clothes.StylePreferences
|
||||
commentId: F:TinyLife.Objects.Clothes.StylePreferences
|
||||
id: StylePreferences
|
||||
parent: TinyLife.Objects.Clothes
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: StylePreferences
|
||||
nameWithType: Clothes.StylePreferences
|
||||
fullName: TinyLife.Objects.Clothes.StylePreferences
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Clothes.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StylePreferences
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 42
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nA set of all valid <xref href=\"TinyLife.Objects.Clothes.StylePreference\" data-throw-if-not-resolved=\"false\"></xref> values.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static readonly StylePreference[] StylePreferences
|
||||
return:
|
||||
type: TinyLife.Objects.StylePreference[]
|
||||
content.vb: Public Shared ReadOnly StylePreferences As StylePreference()
|
||||
- uid: TinyLife.Objects.Clothes.ReferencePrice
|
||||
commentId: F:TinyLife.Objects.Clothes.ReferencePrice
|
||||
id: ReferencePrice
|
||||
|
@ -180,7 +210,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ReferencePrice
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 43
|
||||
startLine: 47
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -209,7 +239,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 58
|
||||
startLine: 62
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -238,7 +268,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Layer
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 62
|
||||
startLine: 66
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -267,7 +297,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Textures
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 66
|
||||
startLine: 70
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -296,7 +326,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TextureRegion
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 70
|
||||
startLine: 74
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -325,7 +355,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Colors
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 74
|
||||
startLine: 78
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -354,11 +384,11 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Price
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 79
|
||||
startLine: 82
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nThe price of this piece of clothing.\nUse <xref href=\"TinyLife.Objects.Clothes.GetPrice\" data-throw-if-not-resolved=\"false\"></xref> to retrieve this value for consistency.\n"
|
||||
summary: "\nThe price of this piece of clothing.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public readonly float Price
|
||||
|
@ -383,7 +413,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Intentions
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 83
|
||||
startLine: 86
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -394,6 +424,35 @@ items:
|
|||
return:
|
||||
type: TinyLife.Objects.ClothesIntention
|
||||
content.vb: Public ReadOnly Intentions As ClothesIntention
|
||||
- uid: TinyLife.Objects.Clothes.StylePreference
|
||||
commentId: F:TinyLife.Objects.Clothes.StylePreference
|
||||
id: StylePreference
|
||||
parent: TinyLife.Objects.Clothes
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: StylePreference
|
||||
nameWithType: Clothes.StylePreference
|
||||
fullName: TinyLife.Objects.Clothes.StylePreference
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Clothes.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StylePreference
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 90
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nThe style preference that this clothing item falls into. A clothing item's style preference slightly influences whether it will be chosen in <xref href=\"TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random%2cTinyLife.Objects.Person%2cTinyLife.Objects.ClothesLayer%2cTinyLife.Objects.ClothesIntention%2cSystem.Nullable%7bTinyLife.Objects.StylePreference%7d%2cSystem.Boolean%2cSystem.Int32%2cSystem.Func%7bTinyLife.Objects.Clothes%2cSystem.Boolean%7d)\" data-throw-if-not-resolved=\"false\"></xref>. The style preference is not exposed to players.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public readonly StylePreference StylePreference
|
||||
return:
|
||||
type: TinyLife.Objects.StylePreference
|
||||
content.vb: Public ReadOnly StylePreference As StylePreference
|
||||
- uid: TinyLife.Objects.Clothes.Icon
|
||||
commentId: P:TinyLife.Objects.Clothes.Icon
|
||||
id: Icon
|
||||
|
@ -412,7 +471,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Icon
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 88
|
||||
startLine: 96
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -443,7 +502,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonBuyable
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 93
|
||||
startLine: 101
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -474,7 +533,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Ages
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 98
|
||||
startLine: 106
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -505,7 +564,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DepthFunction
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 103
|
||||
startLine: 111
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -536,7 +595,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TextureBehaviorLayer
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 108
|
||||
startLine: 116
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -567,7 +626,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RandomWeight
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 114
|
||||
startLine: 122
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -598,7 +657,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RandomColorWeight
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 119
|
||||
startLine: 127
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -629,7 +688,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsIncompatible
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 123
|
||||
startLine: 131
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -660,7 +719,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LayersToHide
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 128
|
||||
startLine: 136
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -691,7 +750,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Description
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 132
|
||||
startLine: 140
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -722,7 +781,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SourceString
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 134
|
||||
startLine: 142
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -737,16 +796,16 @@ items:
|
|||
overload: TinyLife.Objects.Clothes.SourceString*
|
||||
implements:
|
||||
- TinyLife.Emotions.IEmotionSource.SourceString
|
||||
- uid: TinyLife.Objects.Clothes.#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Utilities.ColorScheme[])
|
||||
commentId: M:TinyLife.Objects.Clothes.#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Utilities.ColorScheme[])
|
||||
id: '#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Utilities.ColorScheme[])'
|
||||
- uid: TinyLife.Objects.Clothes.#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Objects.StylePreference,TinyLife.Utilities.ColorScheme[])
|
||||
commentId: M:TinyLife.Objects.Clothes.#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Objects.StylePreference,TinyLife.Utilities.ColorScheme[])
|
||||
id: '#ctor(System.String,TinyLife.Objects.ClothesLayer,System.Collections.Generic.IReadOnlyDictionary{Microsoft.Xna.Framework.Point,MLEM.Textures.TextureRegion},Microsoft.Xna.Framework.Point,System.Single,TinyLife.Objects.ClothesIntention,TinyLife.Objects.StylePreference,TinyLife.Utilities.ColorScheme[])'
|
||||
parent: TinyLife.Objects.Clothes
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Clothes(string, ClothesLayer, IReadOnlyDictionary<Point, TextureRegion>, Point, float, ClothesIntention, params ColorScheme[])
|
||||
nameWithType: Clothes.Clothes(string, ClothesLayer, IReadOnlyDictionary<Point, TextureRegion>, Point, float, ClothesIntention, params ColorScheme[])
|
||||
fullName: TinyLife.Objects.Clothes.Clothes(string, TinyLife.Objects.ClothesLayer, System.Collections.Generic.IReadOnlyDictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>, Microsoft.Xna.Framework.Point, float, TinyLife.Objects.ClothesIntention, params TinyLife.Utilities.ColorScheme[])
|
||||
name: Clothes(string, ClothesLayer, IReadOnlyDictionary<Point, TextureRegion>, Point, float, ClothesIntention, StylePreference, params ColorScheme[])
|
||||
nameWithType: Clothes.Clothes(string, ClothesLayer, IReadOnlyDictionary<Point, TextureRegion>, Point, float, ClothesIntention, StylePreference, params ColorScheme[])
|
||||
fullName: TinyLife.Objects.Clothes.Clothes(string, TinyLife.Objects.ClothesLayer, System.Collections.Generic.IReadOnlyDictionary<Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion>, Microsoft.Xna.Framework.Point, float, TinyLife.Objects.ClothesIntention, TinyLife.Objects.StylePreference, params TinyLife.Utilities.ColorScheme[])
|
||||
type: Constructor
|
||||
source:
|
||||
remote:
|
||||
|
@ -755,14 +814,14 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 146
|
||||
startLine: 155
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nCreates a new clothes item with the given data, producing a texture layout according to the rules described in https://docs.tinylifegame.com/articles/creating_textures.html.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public Clothes(string name, ClothesLayer layer, IReadOnlyDictionary<Point, TextureRegion> textures, Point textureRegion, float price, ClothesIntention intentions, params ColorScheme[] colors)
|
||||
content: public Clothes(string name, ClothesLayer layer, IReadOnlyDictionary<Point, TextureRegion> textures, Point textureRegion, float price, ClothesIntention intentions, StylePreference stylePreference, params ColorScheme[] colors)
|
||||
parameters:
|
||||
- id: name
|
||||
type: System.String
|
||||
|
@ -782,43 +841,17 @@ items:
|
|||
- id: intentions
|
||||
type: TinyLife.Objects.ClothesIntention
|
||||
description: A set of <xref href="TinyLife.Objects.ClothesIntention" data-throw-if-not-resolved="false"></xref> flags that determine what this clothes item can be used for
|
||||
- id: stylePreference
|
||||
type: TinyLife.Objects.StylePreference
|
||||
description: The style preference that this clothing item falls into. A clothing item's style preference slightly influences whether it will be chosen in <xref href="TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random%2cTinyLife.Objects.Person%2cTinyLife.Objects.ClothesLayer%2cTinyLife.Objects.ClothesIntention%2cSystem.Nullable%7bTinyLife.Objects.StylePreference%7d%2cSystem.Boolean%2cSystem.Int32%2cSystem.Func%7bTinyLife.Objects.Clothes%2cSystem.Boolean%7d)" data-throw-if-not-resolved="false"></xref>.
|
||||
- id: colors
|
||||
type: TinyLife.Utilities.ColorScheme[]
|
||||
description: The set of <xref href="TinyLife.Utilities.ColorScheme" data-throw-if-not-resolved="false"></xref>s that this clothes item can have its colors selected from, where each entry corresponds to a texture layer.
|
||||
content.vb: Public Sub New(name As String, layer As ClothesLayer, textures As IReadOnlyDictionary(Of Point, TextureRegion), textureRegion As Point, price As Single, intentions As ClothesIntention, ParamArray colors As ColorScheme())
|
||||
content.vb: Public Sub New(name As String, layer As ClothesLayer, textures As IReadOnlyDictionary(Of Point, TextureRegion), textureRegion As Point, price As Single, intentions As ClothesIntention, stylePreference As StylePreference, ParamArray colors As ColorScheme())
|
||||
overload: TinyLife.Objects.Clothes.#ctor*
|
||||
nameWithType.vb: Clothes.New(String, ClothesLayer, IReadOnlyDictionary(Of Point, TextureRegion), Point, Single, ClothesIntention, ParamArray ColorScheme())
|
||||
fullName.vb: TinyLife.Objects.Clothes.New(String, TinyLife.Objects.ClothesLayer, System.Collections.Generic.IReadOnlyDictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion), Microsoft.Xna.Framework.Point, Single, TinyLife.Objects.ClothesIntention, ParamArray TinyLife.Utilities.ColorScheme())
|
||||
name.vb: New(String, ClothesLayer, IReadOnlyDictionary(Of Point, TextureRegion), Point, Single, ClothesIntention, ParamArray ColorScheme())
|
||||
- uid: TinyLife.Objects.Clothes.GetPrice
|
||||
commentId: M:TinyLife.Objects.Clothes.GetPrice
|
||||
id: GetPrice
|
||||
parent: TinyLife.Objects.Clothes
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetPrice()
|
||||
nameWithType: Clothes.GetPrice()
|
||||
fullName: TinyLife.Objects.Clothes.GetPrice()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Clothes.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPrice
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 172
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
example: []
|
||||
syntax:
|
||||
content: public float GetPrice()
|
||||
return:
|
||||
type: System.Single
|
||||
content.vb: Public Function GetPrice() As Single
|
||||
overload: TinyLife.Objects.Clothes.GetPrice*
|
||||
nameWithType.vb: Clothes.New(String, ClothesLayer, IReadOnlyDictionary(Of Point, TextureRegion), Point, Single, ClothesIntention, StylePreference, ParamArray ColorScheme())
|
||||
fullName.vb: TinyLife.Objects.Clothes.New(String, TinyLife.Objects.ClothesLayer, System.Collections.Generic.IReadOnlyDictionary(Of Microsoft.Xna.Framework.Point, MLEM.Textures.TextureRegion), Microsoft.Xna.Framework.Point, Single, TinyLife.Objects.ClothesIntention, TinyLife.Objects.StylePreference, ParamArray TinyLife.Utilities.ColorScheme())
|
||||
name.vb: New(String, ClothesLayer, IReadOnlyDictionary(Of Point, TextureRegion), Point, Single, ClothesIntention, StylePreference, ParamArray ColorScheme())
|
||||
- uid: TinyLife.Objects.Clothes.GetDescription(TinyLife.Objects.Person)
|
||||
commentId: M:TinyLife.Objects.Clothes.GetDescription(TinyLife.Objects.Person)
|
||||
id: GetDescription(TinyLife.Objects.Person)
|
||||
|
@ -837,7 +870,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDescription
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 182
|
||||
startLine: 187
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -872,7 +905,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AreCompatible
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 194
|
||||
startLine: 199
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -910,7 +943,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 203
|
||||
startLine: 208
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1483,6 +1516,29 @@ references:
|
|||
name: ClothesIntention
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.Clothes.StylePreference
|
||||
commentId: F:TinyLife.Objects.Clothes.StylePreference
|
||||
name: StylePreference
|
||||
nameWithType: Clothes.StylePreference
|
||||
fullName: TinyLife.Objects.Clothes.StylePreference
|
||||
- uid: TinyLife.Objects.StylePreference[]
|
||||
isExternal: true
|
||||
name: StylePreference[]
|
||||
nameWithType: StylePreference[]
|
||||
fullName: TinyLife.Objects.StylePreference[]
|
||||
nameWithType.vb: StylePreference()
|
||||
fullName.vb: TinyLife.Objects.StylePreference()
|
||||
name.vb: StylePreference()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: '['
|
||||
- name: ']'
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: System.Int32
|
||||
commentId: T:System.Int32
|
||||
parent: System
|
||||
|
@ -1700,21 +1756,6 @@ references:
|
|||
name: ColorScheme
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.Clothes.GetPrice
|
||||
commentId: M:TinyLife.Objects.Clothes.GetPrice
|
||||
name: GetPrice()
|
||||
nameWithType: Clothes.GetPrice()
|
||||
fullName: TinyLife.Objects.Clothes.GetPrice()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.Clothes.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.Clothes.GetPrice
|
||||
name: GetPrice
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: System.Single
|
||||
commentId: T:System.Single
|
||||
parent: System
|
||||
|
@ -1726,6 +1767,132 @@ references:
|
|||
nameWithType.vb: Single
|
||||
fullName.vb: Single
|
||||
name.vb: Single
|
||||
- uid: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
commentId: M:TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.random
|
||||
name: SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, StylePreference?, bool, int, Func<Clothes, bool>)
|
||||
nameWithType: Outfit.SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, StylePreference?, bool, int, Func<Clothes, bool>)
|
||||
fullName: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random, TinyLife.Objects.Person, TinyLife.Objects.ClothesLayer, TinyLife.Objects.ClothesIntention, TinyLife.Objects.StylePreference?, bool, int, System.Func<TinyLife.Objects.Clothes, bool>)
|
||||
nameWithType.vb: Outfit.SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, StylePreference?, Boolean, Integer, Func(Of Clothes, Boolean))
|
||||
fullName.vb: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random, TinyLife.Objects.Person, TinyLife.Objects.ClothesLayer, TinyLife.Objects.ClothesIntention, TinyLife.Objects.StylePreference?, Boolean, Integer, System.Func(Of TinyLife.Objects.Clothes, Boolean))
|
||||
name.vb: SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, StylePreference?, Boolean, Integer, Func(Of Clothes, Boolean))
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
name: SetRandomClothesItem
|
||||
- name: (
|
||||
- uid: System.Random
|
||||
name: Random
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.random
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.ClothesLayer
|
||||
name: ClothesLayer
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: '?'
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: bool
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Int32
|
||||
name: int
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Func`2
|
||||
name: Func
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
- name: <
|
||||
- uid: TinyLife.Objects.Clothes
|
||||
name: Clothes
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: bool
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: '>'
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
name: SetRandomClothesItem
|
||||
- name: (
|
||||
- uid: System.Random
|
||||
name: Random
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.random
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Person
|
||||
name: Person
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.ClothesLayer
|
||||
name: ClothesLayer
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.ClothesIntention
|
||||
name: ClothesIntention
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: '?'
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: Boolean
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Int32
|
||||
name: Integer
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Func`2
|
||||
name: Func
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.Clothes
|
||||
name: Clothes
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: Boolean
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: )
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
commentId: T:TinyLife.Objects.StylePreference
|
||||
parent: TinyLife.Objects
|
||||
name: StylePreference
|
||||
nameWithType: StylePreference
|
||||
fullName: TinyLife.Objects.StylePreference
|
||||
- uid: TinyLife.Objects.Clothes.Icon*
|
||||
commentId: Overload:TinyLife.Objects.Clothes.Icon
|
||||
name: Icon
|
||||
|
@ -2480,11 +2647,6 @@ references:
|
|||
nameWithType.vb: Clothes.New
|
||||
fullName.vb: TinyLife.Objects.Clothes.New
|
||||
name.vb: New
|
||||
- uid: TinyLife.Objects.Clothes.GetPrice*
|
||||
commentId: Overload:TinyLife.Objects.Clothes.GetPrice
|
||||
name: GetPrice
|
||||
nameWithType: Clothes.GetPrice
|
||||
fullName: TinyLife.Objects.Clothes.GetPrice
|
||||
- uid: TinyLife.Objects.Clothes.Description
|
||||
commentId: P:TinyLife.Objects.Clothes.Description
|
||||
name: Description
|
||||
|
|
|
@ -30,7 +30,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ClothesIntention
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 466
|
||||
startLine: 498
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -72,7 +72,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: None
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 470
|
||||
startLine: 502
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -98,7 +98,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Everyday
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 471
|
||||
startLine: 503
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -124,7 +124,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Party
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 472
|
||||
startLine: 504
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -150,7 +150,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Formal
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 473
|
||||
startLine: 505
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -176,7 +176,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Workout
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 474
|
||||
startLine: 506
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -202,7 +202,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Swimwear
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 475
|
||||
startLine: 507
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -228,7 +228,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sleep
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 476
|
||||
startLine: 508
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -254,7 +254,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Summer
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 477
|
||||
startLine: 509
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -280,7 +280,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Winter
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 478
|
||||
startLine: 510
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -306,7 +306,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Work
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 479
|
||||
startLine: 511
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -332,7 +332,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Safety
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 480
|
||||
startLine: 512
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -31,7 +31,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ClothesLayer
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 407
|
||||
startLine: 439
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -73,7 +73,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Body
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 413
|
||||
startLine: 445
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -101,7 +101,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Eyes
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 417
|
||||
startLine: 449
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -129,7 +129,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Pants
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 421
|
||||
startLine: 453
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -157,7 +157,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Arms
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 425
|
||||
startLine: 457
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -185,7 +185,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shirt
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 429
|
||||
startLine: 461
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -213,7 +213,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Accessories
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 433
|
||||
startLine: 465
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -241,7 +241,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FacialHair
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 437
|
||||
startLine: 469
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -269,7 +269,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Hair
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 441
|
||||
startLine: 473
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -297,7 +297,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HeadAccessories
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 445
|
||||
startLine: 477
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -325,7 +325,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FaceAccessories
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 449
|
||||
startLine: 481
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -353,7 +353,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ArmAccessories
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 454
|
||||
startLine: 486
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -381,7 +381,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shoes
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 458
|
||||
startLine: 490
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -113,6 +113,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -124,6 +125,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2181,6 +2183,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2247,6 +2255,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -114,6 +114,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -125,6 +126,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2192,6 +2194,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2258,6 +2266,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -8,6 +8,7 @@ items:
|
|||
- TinyLife.Objects.DeathReason.Electrocution
|
||||
- TinyLife.Objects.DeathReason.InexplicableReasons
|
||||
- TinyLife.Objects.DeathReason.Starvation
|
||||
- TinyLife.Objects.DeathReason.TooMuchBrew
|
||||
- TinyLife.Objects.DeathReason.TooMuchProtein
|
||||
langs:
|
||||
- csharp
|
||||
|
@ -23,7 +24,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DeathReason
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3369
|
||||
startLine: 3384
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -52,7 +53,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Starvation
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3375
|
||||
startLine: 3390
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -80,7 +81,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InexplicableReasons
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3380
|
||||
startLine: 3395
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -108,7 +109,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Electrocution
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3385
|
||||
startLine: 3400
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -136,7 +137,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TooMuchProtein
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3389
|
||||
startLine: 3404
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -146,6 +147,34 @@ items:
|
|||
content: TooMuchProtein = 3
|
||||
return:
|
||||
type: TinyLife.Objects.DeathReason
|
||||
- uid: TinyLife.Objects.DeathReason.TooMuchBrew
|
||||
commentId: F:TinyLife.Objects.DeathReason.TooMuchBrew
|
||||
id: TooMuchBrew
|
||||
parent: TinyLife.Objects.DeathReason
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: TooMuchBrew
|
||||
nameWithType: DeathReason.TooMuchBrew
|
||||
fullName: TinyLife.Objects.DeathReason.TooMuchBrew
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Person.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TooMuchBrew
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3408
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nA death reason that represents that a person died from drinking too much brew, which represents alcohol.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: TooMuchBrew = 4
|
||||
return:
|
||||
type: TinyLife.Objects.DeathReason
|
||||
references:
|
||||
- uid: TinyLife.Objects.Person
|
||||
commentId: T:TinyLife.Objects.Person
|
||||
|
|
|
@ -111,6 +111,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -122,6 +123,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2068,6 +2070,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2134,6 +2142,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -118,6 +118,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -129,6 +130,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
- TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point)
|
||||
|
@ -2133,6 +2135,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2199,6 +2207,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
commentId: M:TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -119,6 +119,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -130,6 +131,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2145,6 +2147,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2211,6 +2219,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -118,6 +118,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -129,6 +130,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2302,6 +2304,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2368,6 +2376,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -114,6 +114,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -125,6 +126,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2255,6 +2257,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2321,6 +2329,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -105,6 +105,7 @@ items:
|
|||
- TinyLife.Objects.MapObject
|
||||
derivedClasses:
|
||||
- TinyLife.Objects.Bathtub
|
||||
- TinyLife.Objects.Book
|
||||
- TinyLife.Objects.BreakableFurniture
|
||||
- TinyLife.Objects.Chimney
|
||||
- TinyLife.Objects.CornerFurniture
|
||||
|
@ -125,6 +126,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -136,6 +138,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -1408,7 +1411,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetAiPriority
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 316
|
||||
startLine: 315
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1447,7 +1450,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanExecuteAction
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 332
|
||||
startLine: 331
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1495,7 +1498,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnActionCompleted
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 339
|
||||
startLine: 338
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1537,7 +1540,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ActionUpdate
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 349
|
||||
startLine: 348
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1585,7 +1588,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeActionSpotInfo
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 369
|
||||
startLine: 368
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1624,7 +1627,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetHoverInfo
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 375
|
||||
startLine: 374
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1657,7 +1660,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetEfficiencyModifier
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 404
|
||||
startLine: 403
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1708,7 +1711,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRestoreNeedModifier
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 412
|
||||
startLine: 413
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1756,7 +1759,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsFreeSpot
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 420
|
||||
startLine: 423
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1792,7 +1795,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ResetToStatic
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 426
|
||||
startLine: 429
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1831,7 +1834,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnPositionChanged
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 432
|
||||
startLine: 435
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1864,7 +1867,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Draw
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 454
|
||||
startLine: 456
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1935,7 +1938,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPrice
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 462
|
||||
startLine: 464
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1964,7 +1967,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDescription
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 475
|
||||
startLine: 477
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2002,7 +2005,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDecorativeRating
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 508
|
||||
startLine: 510
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2037,7 +2040,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDirty
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 519
|
||||
startLine: 521
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2072,7 +2075,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetCreator
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 544
|
||||
startLine: 548
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2110,7 +2113,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnPlacedInBuildMode
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 558
|
||||
startLine: 562
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2148,7 +2151,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnNeighborChanged
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 571
|
||||
startLine: 575
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2180,7 +2183,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DrawUi
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 582
|
||||
startLine: 586
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2227,7 +2230,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetOccupants
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 596
|
||||
startLine: 600
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2268,7 +2271,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeActionSpots
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 609
|
||||
startLine: 613
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2306,7 +2309,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeActionSpot
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 630
|
||||
startLine: 634
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2344,7 +2347,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetActionSpotInfo
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 643
|
||||
startLine: 647
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2385,7 +2388,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeObjectSpot
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 655
|
||||
startLine: 659
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2423,7 +2426,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetParent
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 669
|
||||
startLine: 673
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2458,7 +2461,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UnlinkParentsAndChildren
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 683
|
||||
startLine: 687
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2486,7 +2489,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RemoveAndUnlink
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 694
|
||||
startLine: 698
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2514,7 +2517,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetChildren
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 704
|
||||
startLine: 708
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2550,7 +2553,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AddChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 718
|
||||
startLine: 722
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2603,7 +2606,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AddChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 735
|
||||
startLine: 739
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2644,7 +2647,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 751
|
||||
startLine: 755
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2695,7 +2698,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 765
|
||||
startLine: 769
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2733,7 +2736,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RemoveChild
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 776
|
||||
startLine: 780
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2768,7 +2771,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NotifyNeighbors
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 789
|
||||
startLine: 793
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2796,7 +2799,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetNewId
|
||||
path: ../TinyLife/Objects/Furniture.cs
|
||||
startLine: 802
|
||||
startLine: 806
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2911,6 +2914,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2977,6 +2986,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -22,6 +22,7 @@ items:
|
|||
- TinyLife.Objects.FurnitureType.CafeSign
|
||||
- TinyLife.Objects.FurnitureType.Cattails
|
||||
- TinyLife.Objects.FurnitureType.ChildStove
|
||||
- TinyLife.Objects.FurnitureType.CocktailShaker
|
||||
- TinyLife.Objects.FurnitureType.ColorfulCandles
|
||||
- TinyLife.Objects.FurnitureType.ColoringBook
|
||||
- TinyLife.Objects.FurnitureType.Construct``1(System.Int32[],TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Nullable{System.Guid})
|
||||
|
@ -4240,7 +4241,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StudyBook
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 71
|
||||
startLine: 72
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4267,7 +4268,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Puddle
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 74
|
||||
startLine: 76
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4294,7 +4295,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Gravestone
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 79
|
||||
startLine: 81
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4321,7 +4322,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sponge
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 84
|
||||
startLine: 86
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4348,7 +4349,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Spanner
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 85
|
||||
startLine: 87
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4375,7 +4376,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PaintBrush
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 86
|
||||
startLine: 88
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4402,7 +4403,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Pen
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 87
|
||||
startLine: 89
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4429,7 +4430,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TrashBag
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 88
|
||||
startLine: 90
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4456,7 +4457,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Mop
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 91
|
||||
startLine: 93
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4483,7 +4484,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Dumbbell
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 92
|
||||
startLine: 94
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4510,7 +4511,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GrillingFood
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 93
|
||||
startLine: 95
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4537,7 +4538,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HomeworkBook
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 96
|
||||
startLine: 98
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4564,7 +4565,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ToyCar
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 99
|
||||
startLine: 102
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4591,7 +4592,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SmallShovel
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 102
|
||||
startLine: 105
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4618,7 +4619,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Newspaper
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 103
|
||||
startLine: 106
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4645,7 +4646,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WoodenPowerPole
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 111
|
||||
startLine: 114
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4672,7 +4673,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WoodenPowerPoleLine
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 114
|
||||
startLine: 117
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4699,7 +4700,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SkillBooks
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 117
|
||||
startLine: 120
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4726,7 +4727,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BridgeBorderSegment
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 123
|
||||
startLine: 127
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4753,7 +4754,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BridgeBorderStart
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 124
|
||||
startLine: 128
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4780,7 +4781,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BridgeBorderEnd
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 125
|
||||
startLine: 129
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4807,7 +4808,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BottledSunlight
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 126
|
||||
startLine: 130
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -4816,6 +4817,33 @@ items:
|
|||
return:
|
||||
type: TinyLife.Objects.FurnitureType
|
||||
content.vb: Public Shared ReadOnly BottledSunlight As FurnitureType
|
||||
- uid: TinyLife.Objects.FurnitureType.CocktailShaker
|
||||
commentId: F:TinyLife.Objects.FurnitureType.CocktailShaker
|
||||
id: CocktailShaker
|
||||
parent: TinyLife.Objects.FurnitureType
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: CocktailShaker
|
||||
nameWithType: FurnitureType.CocktailShaker
|
||||
fullName: TinyLife.Objects.FurnitureType.CocktailShaker
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CocktailShaker
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 133
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
syntax:
|
||||
content: public static readonly FurnitureType CocktailShaker
|
||||
return:
|
||||
type: TinyLife.Objects.FurnitureType
|
||||
content.vb: Public Shared ReadOnly CocktailShaker As FurnitureType
|
||||
- uid: TinyLife.Objects.FurnitureType.BabyBook
|
||||
commentId: F:TinyLife.Objects.FurnitureType.BabyBook
|
||||
id: BabyBook
|
||||
|
@ -4834,7 +4862,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BabyBook
|
||||
path: ../TinyLife/Objects/FurnitureType.NonBuyable.cs
|
||||
startLine: 130
|
||||
startLine: 136
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -113,6 +113,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -124,6 +125,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2189,6 +2191,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2255,6 +2263,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -25,7 +25,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LifeSpan
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3424
|
||||
startLine: 3443
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -56,7 +56,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VeryShort
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3427
|
||||
startLine: 3446
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -82,7 +82,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Short
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3428
|
||||
startLine: 3447
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -108,7 +108,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Normal
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3429
|
||||
startLine: 3448
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -134,7 +134,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Long
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3430
|
||||
startLine: 3449
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -160,7 +160,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VeryLong
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3431
|
||||
startLine: 3450
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -186,7 +186,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Infinite
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3432
|
||||
startLine: 3451
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -119,6 +119,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -130,6 +131,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
- TinyLife.Objects.MapObject.GetPathCostModifier(Microsoft.Xna.Framework.Point)
|
||||
|
@ -2375,6 +2377,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2441,6 +2449,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
commentId: M:TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -40,12 +40,14 @@ items:
|
|||
- TinyLife.Objects.MapObject.OnRemoved
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.ParentInfo
|
||||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.Position
|
||||
- TinyLife.Objects.MapObject.ResetToStatic(System.Boolean)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.Validate
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.Visibility
|
||||
langs:
|
||||
- csharp
|
||||
|
@ -183,13 +185,42 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nAn event that is invoked when a map object is validated.\nThis event si invoked in <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref>, which is usually called after subclass validation.\n"
|
||||
summary: "\nAn event that is invoked when a map object is validated.\nThis event is invoked in <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref>, which is usually called after subclass validation.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static event Action<MapObject> OnValidated
|
||||
return:
|
||||
type: System.Action{TinyLife.Objects.MapObject}
|
||||
content.vb: Public Shared Event OnValidated As Action(Of MapObject)
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
id: OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
type: Event
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/MapObject.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnValidatedEarly
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 51
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nAn event that is invoked when a map object is validated early.\nThis event is invoked in <xref href=\"TinyLife.Objects.MapObject.ValidateEarly\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public static event Action<MapObject> OnValidatedEarly
|
||||
return:
|
||||
type: System.Action{TinyLife.Objects.MapObject}
|
||||
content.vb: Public Shared Event OnValidatedEarly As Action(Of MapObject)
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
id: OnEventsAttachable
|
||||
|
@ -208,7 +239,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnEventsAttachable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 51
|
||||
startLine: 56
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -237,7 +268,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnDraw
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 57
|
||||
startLine: 62
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -266,7 +297,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnUpdate
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 63
|
||||
startLine: 68
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -295,7 +326,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnGetHoverInfo
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 68
|
||||
startLine: 73
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -324,7 +355,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Position
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 73
|
||||
startLine: 78
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -365,7 +396,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ParentInfo
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 107
|
||||
startLine: 112
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -396,7 +427,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Visibility
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 114
|
||||
startLine: 119
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -428,7 +459,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Id
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 119
|
||||
startLine: 124
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -469,7 +500,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Map
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 125
|
||||
startLine: 130
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -500,7 +531,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CurrentLot
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 129
|
||||
startLine: 134
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -531,7 +562,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CurrentRoom
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 133
|
||||
startLine: 138
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -562,7 +593,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsInWorld
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 137
|
||||
startLine: 142
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -593,7 +624,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HoldingPerson
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 142
|
||||
startLine: 147
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -624,7 +655,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 162
|
||||
startLine: 167
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -665,7 +696,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Draw
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 182
|
||||
startLine: 187
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -712,7 +743,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Intersects
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 190
|
||||
startLine: 195
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -729,6 +760,34 @@ items:
|
|||
description: true if this object intersects with the given rectangle
|
||||
content.vb: Public Overridable Function Intersects(rectangle As RectangleF) As Boolean
|
||||
overload: TinyLife.Objects.MapObject.Intersects*
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
id: ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/MapObject.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ValidateEarly
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 203
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nThis method is called right after this object is loaded from disk, before <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref> is called on this object and all others.\nBy default, this method invokes <xref href=\"TinyLife.Objects.MapObject.OnValidatedEarly\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public virtual void ValidateEarly()
|
||||
content.vb: Public Overridable Sub ValidateEarly()
|
||||
overload: TinyLife.Objects.MapObject.ValidateEarly*
|
||||
- uid: TinyLife.Objects.MapObject.Validate
|
||||
commentId: M:TinyLife.Objects.MapObject.Validate
|
||||
id: Validate
|
||||
|
@ -747,7 +806,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 200
|
||||
startLine: 213
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -778,7 +837,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetCategories
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 211
|
||||
startLine: 224
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -813,7 +872,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnAdded
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 219
|
||||
startLine: 232
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -841,7 +900,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnRemoved
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 225
|
||||
startLine: 238
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -869,7 +928,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetHoverInfo
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 232
|
||||
startLine: 245
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -901,7 +960,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetAiPriority
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 245
|
||||
startLine: 258
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -939,7 +998,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanExecuteAction
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 258
|
||||
startLine: 271
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -986,7 +1045,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnActionCompleted
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 270
|
||||
startLine: 283
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1027,7 +1086,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ActionUpdate
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 282
|
||||
startLine: 295
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1074,7 +1133,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFreeActionSpotInfo
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 290
|
||||
startLine: 303
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1112,7 +1171,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnCameraRotationChanged
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 300
|
||||
startLine: 313
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1147,11 +1206,11 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetMapAndValidate
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 307
|
||||
startLine: 320
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nThis method is the same as <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref>, but it also sets the <xref href=\"TinyLife.Objects.MapObject.Map\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
summary: "\nShorthand method for setting this object's <xref href=\"TinyLife.Objects.MapObject.Map\" data-throw-if-not-resolved=\"false\"></xref> and then calling <xref href=\"TinyLife.Objects.MapObject.ValidateEarly\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.MapObject.Validate\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public bool SetMapAndValidate(Map map)
|
||||
|
@ -1182,7 +1241,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HasCategory
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 318
|
||||
startLine: 332
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1220,7 +1279,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetEfficiencyModifier
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 334
|
||||
startLine: 348
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1270,7 +1329,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRestoreNeedModifier
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 349
|
||||
startLine: 363
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1317,7 +1376,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsFreeSpot
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 360
|
||||
startLine: 374
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1352,7 +1411,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPathCostModifier
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 372
|
||||
startLine: 386
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1387,7 +1446,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ResetToStatic
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 381
|
||||
startLine: 395
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1425,7 +1484,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnPositionChanged
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 391
|
||||
startLine: 405
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1457,7 +1516,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DoDraw
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 401
|
||||
startLine: 415
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1504,7 +1563,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DoUpdate
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 418
|
||||
startLine: 432
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1545,7 +1604,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DrawColumns
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 447
|
||||
startLine: 461
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1625,7 +1684,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetModCategory
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 512
|
||||
startLine: 526
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2361,6 +2420,22 @@ references:
|
|||
name: Validate
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
|
||||
commentId: M:TinyLife.Objects.MapObject.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -3080,6 +3155,17 @@ references:
|
|||
name: RectangleF
|
||||
nameWithType: RectangleF
|
||||
fullName: MLEM.Misc.RectangleF
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly*
|
||||
commentId: Overload:TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
nameWithType: MapObject.ValidateEarly
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnValidated
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidated
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -111,6 +111,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -122,6 +123,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2110,6 +2112,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2176,6 +2184,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -99,7 +99,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ObjectCategory
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 535
|
||||
startLine: 549
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -161,7 +161,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Nothing
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 538
|
||||
startLine: 552
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -190,7 +190,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Ground
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 540
|
||||
startLine: 554
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -219,7 +219,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Chair
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 542
|
||||
startLine: 556
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -248,7 +248,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BabySittable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 544
|
||||
startLine: 558
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -277,7 +277,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Toilet
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 546
|
||||
startLine: 560
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -306,7 +306,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SingleBed
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 548
|
||||
startLine: 562
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -335,7 +335,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DoubleBed
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 550
|
||||
startLine: 564
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -364,7 +364,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Fridge
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 552
|
||||
startLine: 566
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -393,7 +393,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shower
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 554
|
||||
startLine: 568
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -422,7 +422,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Counter
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 556
|
||||
startLine: 570
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -451,7 +451,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Stove
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 558
|
||||
startLine: 572
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -480,7 +480,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Oven
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 560
|
||||
startLine: 574
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -509,7 +509,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SmallObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 562
|
||||
startLine: 576
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -538,7 +538,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonBuyable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 564
|
||||
startLine: 578
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -567,7 +567,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Table
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 566
|
||||
startLine: 580
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -596,7 +596,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Holdable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 568
|
||||
startLine: 582
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -625,7 +625,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DeskObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 570
|
||||
startLine: 584
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -654,7 +654,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DisallowedOnGround
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 572
|
||||
startLine: 586
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -683,7 +683,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Computer
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 574
|
||||
startLine: 588
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -712,7 +712,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sink
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 576
|
||||
startLine: 590
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -741,7 +741,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CounterObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 578
|
||||
startLine: 592
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -770,7 +770,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Cleanable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 580
|
||||
startLine: 594
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -799,7 +799,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: People
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 582
|
||||
startLine: 596
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -828,7 +828,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Mailbox
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 584
|
||||
startLine: 598
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -857,7 +857,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Wardrobe
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 586
|
||||
startLine: 600
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -886,7 +886,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NaturalGroundRequired
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 588
|
||||
startLine: 602
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -915,7 +915,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WaterRequired
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 590
|
||||
startLine: 604
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -944,7 +944,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AllowedOnWater
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 592
|
||||
startLine: 606
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -973,7 +973,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Self
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 594
|
||||
startLine: 608
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1002,7 +1002,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WallHanging
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 596
|
||||
startLine: 610
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1031,7 +1031,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ForceGridPlacement
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 598
|
||||
startLine: 612
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1060,7 +1060,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Easel
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 600
|
||||
startLine: 614
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1089,7 +1089,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Mirror
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 602
|
||||
startLine: 616
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1118,7 +1118,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Bookshelf
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 604
|
||||
startLine: 618
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1147,7 +1147,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonColliding
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 606
|
||||
startLine: 620
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1176,7 +1176,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Gravestone
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 608
|
||||
startLine: 622
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1205,7 +1205,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonSellable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 610
|
||||
startLine: 624
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1234,7 +1234,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: NonMovable
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 612
|
||||
startLine: 626
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1263,7 +1263,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Tree
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 614
|
||||
startLine: 628
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1292,7 +1292,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Television
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 616
|
||||
startLine: 630
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1321,7 +1321,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BartendingObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 618
|
||||
startLine: 632
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1350,7 +1350,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Walls
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 620
|
||||
startLine: 634
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1379,7 +1379,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LargeSurfaceObject
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 622
|
||||
startLine: 636
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1408,7 +1408,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StandingDesk
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 624
|
||||
startLine: 638
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1437,7 +1437,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Lamp
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 626
|
||||
startLine: 640
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1466,7 +1466,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CeilingHanging
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 628
|
||||
startLine: 642
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1495,7 +1495,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanCoverWindow
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 630
|
||||
startLine: 644
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1524,7 +1524,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanCoverDoor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 632
|
||||
startLine: 646
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1553,7 +1553,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Barbecue
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 634
|
||||
startLine: 648
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1582,7 +1582,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TrashCan
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 636
|
||||
startLine: 650
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1611,7 +1611,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanBeThrownAway
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 638
|
||||
startLine: 652
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1640,7 +1640,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CanBeScrapped
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 640
|
||||
startLine: 654
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1669,7 +1669,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ObstructedByRoofs
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 642
|
||||
startLine: 656
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1698,7 +1698,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RoofAttached
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 644
|
||||
startLine: 658
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1727,7 +1727,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FireLight
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 646
|
||||
startLine: 660
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1756,7 +1756,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ToyBox
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 648
|
||||
startLine: 662
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1785,7 +1785,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChildStove
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 650
|
||||
startLine: 664
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1814,7 +1814,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sandbox
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 652
|
||||
startLine: 666
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1843,7 +1843,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JungleGym
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 654
|
||||
startLine: 668
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1872,7 +1872,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Newspaper
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 656
|
||||
startLine: 670
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1901,7 +1901,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CoffeeMachine
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 658
|
||||
startLine: 672
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1930,7 +1930,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CafeDisplayCase
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 660
|
||||
startLine: 674
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1959,7 +1959,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GroundItem
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 662
|
||||
startLine: 676
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -1988,7 +1988,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TreeDecor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 664
|
||||
startLine: 678
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2017,7 +2017,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OpeningHoursSign
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 666
|
||||
startLine: 680
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2046,7 +2046,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TeaKit
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 668
|
||||
startLine: 682
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2075,7 +2075,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Potty
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 672
|
||||
startLine: 686
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2104,7 +2104,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Treadmill
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 674
|
||||
startLine: 688
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2133,7 +2133,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DumbbellHolder
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 676
|
||||
startLine: 690
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2162,7 +2162,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WoodworkingItem
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 678
|
||||
startLine: 692
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2191,7 +2191,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChangingStation
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 680
|
||||
startLine: 694
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2220,7 +2220,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Crib
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 682
|
||||
startLine: 696
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2249,7 +2249,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BabyBathtub
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 684
|
||||
startLine: 698
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2278,7 +2278,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 688
|
||||
startLine: 702
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2313,7 +2313,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_Implicit
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 691
|
||||
startLine: 705
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2348,7 +2348,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_Implicit
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 696
|
||||
startLine: 710
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2383,7 +2383,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_BitwiseOr
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 701
|
||||
startLine: 715
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2420,7 +2420,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_BitwiseAnd
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 706
|
||||
startLine: 720
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2457,7 +2457,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_ExclusiveOr
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 711
|
||||
startLine: 725
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -2494,7 +2494,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: op_OnesComplement
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 716
|
||||
startLine: 730
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -9,8 +9,9 @@ items:
|
|||
- TinyLife.Objects.Outfit.Clothes
|
||||
- TinyLife.Objects.Outfit.EnsureIntentionsMatch(System.Int32)
|
||||
- TinyLife.Objects.Outfit.GetIntentionPercentage(TinyLife.Objects.ClothesIntention)
|
||||
- TinyLife.Objects.Outfit.GetMostFittingStyle
|
||||
- TinyLife.Objects.Outfit.Intentions
|
||||
- TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
- TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
|
@ -25,7 +26,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Outfit
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 287
|
||||
startLine: 295
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -74,7 +75,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Clothes
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 295
|
||||
startLine: 303
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -113,7 +114,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Intentions
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 301
|
||||
startLine: 309
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -152,7 +153,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 307
|
||||
startLine: 315
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -187,7 +188,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetIntentionPercentage
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 317
|
||||
startLine: 325
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -204,6 +205,37 @@ items:
|
|||
description: The intention match percentage, between 0 and 1.
|
||||
content.vb: Public Function GetIntentionPercentage(intention As ClothesIntention) As Single
|
||||
overload: TinyLife.Objects.Outfit.GetIntentionPercentage*
|
||||
- uid: TinyLife.Objects.Outfit.GetMostFittingStyle
|
||||
commentId: M:TinyLife.Objects.Outfit.GetMostFittingStyle
|
||||
id: GetMostFittingStyle
|
||||
parent: TinyLife.Objects.Outfit
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetMostFittingStyle()
|
||||
nameWithType: Outfit.GetMostFittingStyle()
|
||||
fullName: TinyLife.Objects.Outfit.GetMostFittingStyle()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Clothes.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetMostFittingStyle
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 343
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nReturns the <xref href=\"TinyLife.Objects.StylePreference\" data-throw-if-not-resolved=\"false\"></xref> that, heuristically, most fits with this outfit.\nThe style preference is calculated based on the <xref href=\"TinyLife.Objects.Clothes.StylePreference\" data-throw-if-not-resolved=\"false\"></xref> of the included clothing items, and used when randomly generating additional outfits for a Tiny.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public StylePreference GetMostFittingStyle()
|
||||
return:
|
||||
type: TinyLife.Objects.StylePreference
|
||||
description: The most fitting style preference for this outfit.
|
||||
content.vb: Public Function GetMostFittingStyle() As StylePreference
|
||||
overload: TinyLife.Objects.Outfit.GetMostFittingStyle*
|
||||
- uid: TinyLife.Objects.Outfit.EnsureIntentionsMatch(System.Int32)
|
||||
commentId: M:TinyLife.Objects.Outfit.EnsureIntentionsMatch(System.Int32)
|
||||
id: EnsureIntentionsMatch(System.Int32)
|
||||
|
@ -222,7 +254,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EnsureIntentionsMatch
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 335
|
||||
startLine: 358
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -239,16 +271,16 @@ items:
|
|||
nameWithType.vb: Outfit.EnsureIntentionsMatch(Integer)
|
||||
fullName.vb: TinyLife.Objects.Outfit.EnsureIntentionsMatch(Integer)
|
||||
name.vb: EnsureIntentionsMatch(Integer)
|
||||
- uid: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
commentId: M:TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
id: SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
- uid: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
commentId: M:TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
id: SetRandomClothesItem(System.Random,TinyLife.Objects.Person,TinyLife.Objects.ClothesLayer,TinyLife.Objects.ClothesIntention,System.Nullable{TinyLife.Objects.StylePreference},System.Boolean,System.Int32,System.Func{TinyLife.Objects.Clothes,System.Boolean})
|
||||
parent: TinyLife.Objects.Outfit
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, bool, int, Func<Clothes, bool>)
|
||||
nameWithType: Outfit.SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, bool, int, Func<Clothes, bool>)
|
||||
fullName: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random, TinyLife.Objects.Person, TinyLife.Objects.ClothesLayer, TinyLife.Objects.ClothesIntention, bool, int, System.Func<TinyLife.Objects.Clothes, bool>)
|
||||
name: SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, StylePreference?, bool, int, Func<Clothes, bool>)
|
||||
nameWithType: Outfit.SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, StylePreference?, bool, int, Func<Clothes, bool>)
|
||||
fullName: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random, TinyLife.Objects.Person, TinyLife.Objects.ClothesLayer, TinyLife.Objects.ClothesIntention, TinyLife.Objects.StylePreference?, bool, int, System.Func<TinyLife.Objects.Clothes, bool>)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
|
@ -257,14 +289,14 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SetRandomClothesItem
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 356
|
||||
startLine: 380
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nSets a random clothes item for this outfit's given <xref href=\"TinyLife.Objects.ClothesLayer\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public void SetRandomClothesItem(Random random, Person person, ClothesLayer layer, ClothesIntention allowedIntentions = ClothesIntention.None, bool keepOldColors = false, int maxPrice = 50, Func<Clothes, bool> additionalConditions = null)
|
||||
content: public void SetRandomClothesItem(Random random, Person person, ClothesLayer layer, ClothesIntention allowedIntentions = ClothesIntention.None, StylePreference? preferredStyle = null, bool keepOldColors = false, int maxPrice = 50, Func<Clothes, bool> additionalConditions = null)
|
||||
parameters:
|
||||
- id: random
|
||||
type: System.Random
|
||||
|
@ -278,6 +310,9 @@ items:
|
|||
- id: allowedIntentions
|
||||
type: TinyLife.Objects.ClothesIntention
|
||||
description: The intentions allowed, or <xref href="TinyLife.Objects.ClothesIntention.None" data-throw-if-not-resolved="false"></xref> to allow all intentions.
|
||||
- id: preferredStyle
|
||||
type: System.Nullable{TinyLife.Objects.StylePreference}
|
||||
description: The preferred style to use, which will influence the chosen clothing item based on its <xref href="TinyLife.Objects.Clothes.StylePreference" data-throw-if-not-resolved="false"></xref>. If this is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>, all clothing items are considered equally.
|
||||
- id: keepOldColors
|
||||
type: System.Boolean
|
||||
description: Whether old colors should be kept if the new object's <xref href="TinyLife.Utilities.ColorScheme" data-throw-if-not-resolved="false"></xref> matches the old one.
|
||||
|
@ -287,11 +322,11 @@ items:
|
|||
- id: additionalConditions
|
||||
type: System.Func{TinyLife.Objects.Clothes,System.Boolean}
|
||||
description: An optional set of additional conditions to check for when selecting clothing items.
|
||||
content.vb: Public Sub SetRandomClothesItem(random As Random, person As Person, layer As ClothesLayer, allowedIntentions As ClothesIntention = ClothesIntention.None, keepOldColors As Boolean = False, maxPrice As Integer = 50, additionalConditions As Func(Of Clothes, Boolean) = Nothing)
|
||||
content.vb: Public Sub SetRandomClothesItem(random As Random, person As Person, layer As ClothesLayer, allowedIntentions As ClothesIntention = ClothesIntention.None, preferredStyle As StylePreference? = Nothing, keepOldColors As Boolean = False, maxPrice As Integer = 50, additionalConditions As Func(Of Clothes, Boolean) = Nothing)
|
||||
overload: TinyLife.Objects.Outfit.SetRandomClothesItem*
|
||||
nameWithType.vb: Outfit.SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, Boolean, Integer, Func(Of Clothes, Boolean))
|
||||
fullName.vb: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random, TinyLife.Objects.Person, TinyLife.Objects.ClothesLayer, TinyLife.Objects.ClothesIntention, Boolean, Integer, System.Func(Of TinyLife.Objects.Clothes, Boolean))
|
||||
name.vb: SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, Boolean, Integer, Func(Of Clothes, Boolean))
|
||||
nameWithType.vb: Outfit.SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, StylePreference?, Boolean, Integer, Func(Of Clothes, Boolean))
|
||||
fullName.vb: TinyLife.Objects.Outfit.SetRandomClothesItem(System.Random, TinyLife.Objects.Person, TinyLife.Objects.ClothesLayer, TinyLife.Objects.ClothesIntention, TinyLife.Objects.StylePreference?, Boolean, Integer, System.Func(Of TinyLife.Objects.Clothes, Boolean))
|
||||
name.vb: SetRandomClothesItem(Random, Person, ClothesLayer, ClothesIntention, StylePreference?, Boolean, Integer, Func(Of Clothes, Boolean))
|
||||
references:
|
||||
- uid: TinyLife.Objects.WornClothes
|
||||
commentId: T:TinyLife.Objects.WornClothes
|
||||
|
@ -805,6 +840,22 @@ references:
|
|||
nameWithType.vb: Single
|
||||
fullName.vb: Single
|
||||
name.vb: Single
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
commentId: T:TinyLife.Objects.StylePreference
|
||||
parent: TinyLife.Objects
|
||||
name: StylePreference
|
||||
nameWithType: StylePreference
|
||||
fullName: TinyLife.Objects.StylePreference
|
||||
- uid: TinyLife.Objects.Clothes.StylePreference
|
||||
commentId: F:TinyLife.Objects.Clothes.StylePreference
|
||||
name: StylePreference
|
||||
nameWithType: Clothes.StylePreference
|
||||
fullName: TinyLife.Objects.Clothes.StylePreference
|
||||
- uid: TinyLife.Objects.Outfit.GetMostFittingStyle*
|
||||
commentId: Overload:TinyLife.Objects.Outfit.GetMostFittingStyle
|
||||
name: GetMostFittingStyle
|
||||
nameWithType: Outfit.GetMostFittingStyle
|
||||
fullName: TinyLife.Objects.Outfit.GetMostFittingStyle
|
||||
- uid: TinyLife.Objects.Outfit.Intentions
|
||||
commentId: F:TinyLife.Objects.Outfit.Intentions
|
||||
name: Intentions
|
||||
|
@ -874,6 +925,21 @@ references:
|
|||
name: Random
|
||||
nameWithType: Random
|
||||
fullName: System.Random
|
||||
- uid: System.Nullable{TinyLife.Objects.StylePreference}
|
||||
commentId: T:System.Nullable{TinyLife.Objects.StylePreference}
|
||||
parent: System
|
||||
definition: System.Nullable`1
|
||||
name: StylePreference?
|
||||
nameWithType: StylePreference?
|
||||
fullName: TinyLife.Objects.StylePreference?
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: '?'
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: '?'
|
||||
- uid: System.Boolean
|
||||
commentId: T:System.Boolean
|
||||
parent: System
|
||||
|
@ -928,6 +994,34 @@ references:
|
|||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: )
|
||||
- uid: System.Nullable`1
|
||||
commentId: T:System.Nullable`1
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
name: Nullable<T>
|
||||
nameWithType: Nullable<T>
|
||||
fullName: System.Nullable<T>
|
||||
nameWithType.vb: Nullable(Of T)
|
||||
fullName.vb: System.Nullable(Of T)
|
||||
name.vb: Nullable(Of T)
|
||||
spec.csharp:
|
||||
- uid: System.Nullable`1
|
||||
name: Nullable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: System.Nullable`1
|
||||
name: Nullable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: System.Func`2
|
||||
commentId: T:System.Func`2
|
||||
isExternal: true
|
||||
|
|
|
@ -110,6 +110,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -121,6 +122,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2007,6 +2009,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2073,6 +2081,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -113,6 +113,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -124,6 +125,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2117,6 +2119,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2183,6 +2191,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -26,7 +26,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ParentInfo
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 751
|
||||
startLine: 765
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -62,7 +62,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsAttached
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 756
|
||||
startLine: 770
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -93,7 +93,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LayerDepth
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 761
|
||||
startLine: 775
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -124,7 +124,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ShouldDraw
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 765
|
||||
startLine: 779
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -155,7 +155,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 777
|
||||
startLine: 791
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -190,7 +190,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 786
|
||||
startLine: 800
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -228,7 +228,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 795
|
||||
startLine: 809
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -263,7 +263,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 803
|
||||
startLine: 817
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ActionUpdateDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3274
|
||||
startLine: 3289
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EfficiencyModifierDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3259
|
||||
startLine: 3274
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EmotionModifiersChangedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3284
|
||||
startLine: 3299
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PassiveActionPriorityDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3269
|
||||
startLine: 3284
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RelationshipChangeDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3289
|
||||
startLine: 3304
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: RestoreNeedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3279
|
||||
startLine: 3294
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -19,7 +19,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WalkSpeedDelegate
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3264
|
||||
startLine: 3279
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -59,7 +59,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StartAutomatically
|
||||
path: ../TinyLife/Objects/PersonAi.cs
|
||||
startLine: 132
|
||||
startLine: 136
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -30,7 +30,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Pose
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3315
|
||||
startLine: 3330
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -60,7 +60,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Standing
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3320
|
||||
startLine: 3335
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -88,7 +88,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Walking
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3324
|
||||
startLine: 3339
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -116,7 +116,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sitting
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3328
|
||||
startLine: 3343
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -144,7 +144,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Laying
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3333
|
||||
startLine: 3348
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -172,7 +172,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SittingGround
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3338
|
||||
startLine: 3353
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -200,7 +200,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingStanding
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3342
|
||||
startLine: 3357
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -228,7 +228,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingSitting
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3346
|
||||
startLine: 3361
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -256,7 +256,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WorkingSittingGround
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3350
|
||||
startLine: 3365
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -284,7 +284,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Running
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3354
|
||||
startLine: 3369
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -312,7 +312,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StandingArmsOut
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3358
|
||||
startLine: 3373
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -340,7 +340,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WalkingArmsOut
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3362
|
||||
startLine: 3377
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PregnancyAbility
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3486
|
||||
startLine: 3505
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -32,6 +32,7 @@ items:
|
|||
content: public enum PregnancyAbility
|
||||
content.vb: Public Enum PregnancyAbility
|
||||
extensionMethods:
|
||||
- TinyLife.Objects.PregnancyAbility.TinyLife.Utilities.Extensions.GetMostFittingStyle
|
||||
- TinyLife.Objects.PregnancyAbility.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
- uid: TinyLife.Objects.PregnancyAbility.Neither
|
||||
commentId: F:TinyLife.Objects.PregnancyAbility.Neither
|
||||
|
@ -51,7 +52,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Neither
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3491
|
||||
startLine: 3510
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -79,7 +80,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetOthersPregnant
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3495
|
||||
startLine: 3514
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -107,7 +108,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPregnant
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3499
|
||||
startLine: 3518
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -149,6 +150,27 @@ references:
|
|||
- name: .
|
||||
- uid: TinyLife.Objects
|
||||
name: Objects
|
||||
- uid: TinyLife.Objects.PregnancyAbility.TinyLife.Utilities.Extensions.GetMostFittingStyle
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
parent: TinyLife.Utilities.Extensions
|
||||
definition: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
name: GetMostFittingStyle(PregnancyAbility)
|
||||
nameWithType: Extensions.GetMostFittingStyle(PregnancyAbility)
|
||||
fullName: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
name: GetMostFittingStyle
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.PregnancyAbility
|
||||
name: PregnancyAbility
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
name: GetMostFittingStyle
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.PregnancyAbility
|
||||
name: PregnancyAbility
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.PregnancyAbility.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
parent: TinyLife.Utilities.Extensions
|
||||
|
@ -190,6 +212,31 @@ references:
|
|||
name: System
|
||||
nameWithType: System
|
||||
fullName: System
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
name: GetMostFittingStyle(PregnancyAbility)
|
||||
nameWithType: Extensions.GetMostFittingStyle(PregnancyAbility)
|
||||
fullName: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
name: GetMostFittingStyle
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.PregnancyAbility
|
||||
name: PregnancyAbility
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.PregnancyAbility)
|
||||
name: GetMostFittingStyle
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.PregnancyAbility
|
||||
name: PregnancyAbility
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions
|
||||
commentId: T:TinyLife.Utilities.Extensions
|
||||
parent: TinyLife.Utilities
|
||||
name: Extensions
|
||||
nameWithType: Extensions
|
||||
fullName: TinyLife.Utilities.Extensions
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
name: JsonCopy<T>(T)
|
||||
|
@ -218,12 +265,6 @@ references:
|
|||
- name: (
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions
|
||||
commentId: T:TinyLife.Utilities.Extensions
|
||||
parent: TinyLife.Utilities
|
||||
name: Extensions
|
||||
nameWithType: Extensions
|
||||
fullName: TinyLife.Utilities.Extensions
|
||||
- uid: TinyLife.Utilities
|
||||
commentId: N:TinyLife.Utilities
|
||||
name: TinyLife.Utilities
|
||||
|
|
|
@ -122,6 +122,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -133,6 +134,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2276,6 +2278,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2342,6 +2350,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -35,7 +35,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SpeakStyle
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3442
|
||||
startLine: 3461
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -74,7 +74,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Affirmative
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3446
|
||||
startLine: 3465
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -100,7 +100,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Angry
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3447
|
||||
startLine: 3466
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -126,7 +126,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Annoyed
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3448
|
||||
startLine: 3467
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -152,7 +152,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Bored
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3449
|
||||
startLine: 3468
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -178,7 +178,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Childish
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3450
|
||||
startLine: 3469
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -204,7 +204,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Confident
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3451
|
||||
startLine: 3470
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -230,7 +230,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Confused
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3452
|
||||
startLine: 3471
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -256,7 +256,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Disagreeing
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3453
|
||||
startLine: 3472
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -282,7 +282,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Excited
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3454
|
||||
startLine: 3473
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -308,7 +308,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Happy
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3455
|
||||
startLine: 3474
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -334,7 +334,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Neutral
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3456
|
||||
startLine: 3475
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -360,7 +360,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Questioning
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3457
|
||||
startLine: 3476
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -386,7 +386,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Sad
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3458
|
||||
startLine: 3477
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -412,7 +412,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Scared
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3459
|
||||
startLine: 3478
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -438,7 +438,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Shocked
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3460
|
||||
startLine: 3479
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -464,7 +464,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Thinking
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3461
|
||||
startLine: 3480
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
233
docs/api/TinyLife.Objects.StylePreference.yml
Normal file
233
docs/api/TinyLife.Objects.StylePreference.yml
Normal file
|
@ -0,0 +1,233 @@
|
|||
### YamlMime:ManagedReference
|
||||
items:
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
commentId: T:TinyLife.Objects.StylePreference
|
||||
id: StylePreference
|
||||
parent: TinyLife.Objects
|
||||
children:
|
||||
- TinyLife.Objects.StylePreference.Feminine
|
||||
- TinyLife.Objects.StylePreference.Masculine
|
||||
- TinyLife.Objects.StylePreference.Neutral
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: StylePreference
|
||||
nameWithType: StylePreference
|
||||
fullName: TinyLife.Objects.StylePreference
|
||||
type: Enum
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Clothes.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StylePreference
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 522
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nA set of values that represent a style preference that a <xref href=\"TinyLife.Objects.Clothes\" data-throw-if-not-resolved=\"false\"></xref> item is meant to fit most, or is intended for.\nTiny Life uses the style preference system as a rough guide when randomly generating outfits and other properties for Tinies, always taking it into account with a chance of 50% and lower.\nClothing items like t-shirts, pants and hats should generally use the <xref href=\"TinyLife.Objects.StylePreference.Neutral\" data-throw-if-not-resolved=\"false\"></xref> style preference, which will make every Tiny consider the item equally.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public enum StylePreference
|
||||
content.vb: Public Enum StylePreference
|
||||
extensionMethods:
|
||||
- TinyLife.Objects.StylePreference.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
- uid: TinyLife.Objects.StylePreference.Neutral
|
||||
commentId: F:TinyLife.Objects.StylePreference.Neutral
|
||||
id: Neutral
|
||||
parent: TinyLife.Objects.StylePreference
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Neutral
|
||||
nameWithType: StylePreference.Neutral
|
||||
fullName: TinyLife.Objects.StylePreference.Neutral
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Clothes.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Neutral
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 525
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
syntax:
|
||||
content: Neutral = 0
|
||||
return:
|
||||
type: TinyLife.Objects.StylePreference
|
||||
- uid: TinyLife.Objects.StylePreference.Masculine
|
||||
commentId: F:TinyLife.Objects.StylePreference.Masculine
|
||||
id: Masculine
|
||||
parent: TinyLife.Objects.StylePreference
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Masculine
|
||||
nameWithType: StylePreference.Masculine
|
||||
fullName: TinyLife.Objects.StylePreference.Masculine
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Clothes.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Masculine
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 526
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
syntax:
|
||||
content: Masculine = 1
|
||||
return:
|
||||
type: TinyLife.Objects.StylePreference
|
||||
- uid: TinyLife.Objects.StylePreference.Feminine
|
||||
commentId: F:TinyLife.Objects.StylePreference.Feminine
|
||||
id: Feminine
|
||||
parent: TinyLife.Objects.StylePreference
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Feminine
|
||||
nameWithType: StylePreference.Feminine
|
||||
fullName: TinyLife.Objects.StylePreference.Feminine
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Clothes.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Feminine
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 527
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
syntax:
|
||||
content: Feminine = 2
|
||||
return:
|
||||
type: TinyLife.Objects.StylePreference
|
||||
references:
|
||||
- uid: TinyLife.Objects.Clothes
|
||||
commentId: T:TinyLife.Objects.Clothes
|
||||
parent: TinyLife.Objects
|
||||
name: Clothes
|
||||
nameWithType: Clothes
|
||||
fullName: TinyLife.Objects.Clothes
|
||||
- uid: TinyLife.Objects.StylePreference.Neutral
|
||||
commentId: F:TinyLife.Objects.StylePreference.Neutral
|
||||
name: Neutral
|
||||
nameWithType: StylePreference.Neutral
|
||||
fullName: TinyLife.Objects.StylePreference.Neutral
|
||||
- uid: TinyLife.Objects
|
||||
commentId: N:TinyLife.Objects
|
||||
name: TinyLife.Objects
|
||||
nameWithType: TinyLife.Objects
|
||||
fullName: TinyLife.Objects
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Objects
|
||||
name: Objects
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Objects
|
||||
name: Objects
|
||||
- uid: TinyLife.Objects.StylePreference.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
parent: TinyLife.Utilities.Extensions
|
||||
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
name: JsonCopy<StylePreference>(StylePreference)
|
||||
nameWithType: Extensions.JsonCopy<StylePreference>(StylePreference)
|
||||
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Objects.StylePreference>(TinyLife.Objects.StylePreference)
|
||||
nameWithType.vb: Extensions.JsonCopy(Of StylePreference)(StylePreference)
|
||||
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Objects.StylePreference)(TinyLife.Objects.StylePreference)
|
||||
name.vb: JsonCopy(Of StylePreference)(StylePreference)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.StylePreference)
|
||||
name: JsonCopy
|
||||
- name: <
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: '>'
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.StylePreference)
|
||||
name: JsonCopy
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: )
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
name: StylePreference
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
name: JsonCopy<T>(T)
|
||||
nameWithType: Extensions.JsonCopy<T>(T)
|
||||
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
|
||||
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
|
||||
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
|
||||
name.vb: JsonCopy(Of T)(T)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
name: JsonCopy
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
- name: (
|
||||
- name: T
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
name: JsonCopy
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- name: (
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions
|
||||
commentId: T:TinyLife.Utilities.Extensions
|
||||
parent: TinyLife.Utilities
|
||||
name: Extensions
|
||||
nameWithType: Extensions
|
||||
fullName: TinyLife.Utilities.Extensions
|
||||
- uid: TinyLife.Utilities
|
||||
commentId: N:TinyLife.Utilities
|
||||
name: TinyLife.Utilities
|
||||
nameWithType: TinyLife.Utilities
|
||||
fullName: TinyLife.Utilities
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Utilities
|
||||
name: Utilities
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Utilities
|
||||
name: Utilities
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
commentId: T:TinyLife.Objects.StylePreference
|
||||
parent: TinyLife.Objects
|
||||
name: StylePreference
|
||||
nameWithType: StylePreference
|
||||
fullName: TinyLife.Objects.StylePreference
|
|
@ -111,6 +111,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -122,6 +123,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2153,6 +2155,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2219,6 +2227,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -114,6 +114,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -125,6 +126,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2164,6 +2166,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2230,6 +2238,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -113,6 +113,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -124,6 +125,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.CurrentRoom
|
||||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
- TinyLife.Objects.MapObject.SetMapAndValidate(TinyLife.World.Map)
|
||||
- TinyLife.Objects.MapObject.HasCategory(TinyLife.Objects.Person,TinyLife.Objects.ObjectCategory)
|
||||
|
@ -2133,6 +2135,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2199,6 +2207,22 @@ references:
|
|||
name: HoldingPerson
|
||||
nameWithType: MapObject.HoldingPerson
|
||||
fullName: TinyLife.Objects.MapObject.HoldingPerson
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
|
|
@ -21,7 +21,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VehicleType
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 133
|
||||
startLine: 116
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -50,7 +50,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Car
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 138
|
||||
startLine: 121
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -78,7 +78,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EScooter
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 142
|
||||
startLine: 125
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -6,6 +6,7 @@ items:
|
|||
parent: TinyLife.Objects
|
||||
children:
|
||||
- TinyLife.Objects.Vehicle.#ctor(System.Guid,TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,TinyLife.Objects.Vehicle.VehicleType)
|
||||
- TinyLife.Objects.Vehicle.Action
|
||||
- TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime,System.Object,Microsoft.Xna.Framework.Vector2,System.Nullable{Microsoft.Xna.Framework.Color},System.Collections.Generic.List{MLEM.Graphics.StaticSpriteBatch.Item})
|
||||
- TinyLife.Objects.Vehicle.Driver
|
||||
- TinyLife.Objects.Vehicle.GetSpeed
|
||||
|
@ -15,8 +16,6 @@ items:
|
|||
- TinyLife.Objects.Vehicle.Rotation
|
||||
- TinyLife.Objects.Vehicle.Type
|
||||
- TinyLife.Objects.Vehicle.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
|
||||
- TinyLife.Objects.Vehicle.UpdateDriving(TinyLife.Actions.PathfindAction)
|
||||
- TinyLife.Objects.Vehicle.Validate
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
|
@ -51,6 +50,7 @@ items:
|
|||
- TinyLife.Objects.MapObject.PersonRotationOrder
|
||||
- TinyLife.Objects.MapObject.OnCreated
|
||||
- TinyLife.Objects.MapObject.OnValidated
|
||||
- TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
- TinyLife.Objects.MapObject.OnDraw
|
||||
- TinyLife.Objects.MapObject.OnUpdate
|
||||
|
@ -65,6 +65,8 @@ items:
|
|||
- TinyLife.Objects.MapObject.IsInWorld
|
||||
- TinyLife.Objects.MapObject.HoldingPerson
|
||||
- TinyLife.Objects.MapObject.Intersects(MLEM.Misc.RectangleF)
|
||||
- TinyLife.Objects.MapObject.ValidateEarly
|
||||
- TinyLife.Objects.MapObject.Validate
|
||||
- TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person)
|
||||
- TinyLife.Objects.MapObject.OnAdded
|
||||
- TinyLife.Objects.MapObject.GetHoverInfo(MLEM.Ui.Elements.Tooltip)
|
||||
|
@ -175,6 +177,45 @@ items:
|
|||
- type: System.Runtime.Serialization.DataMemberAttribute
|
||||
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
|
||||
arguments: []
|
||||
- uid: TinyLife.Objects.Vehicle.Action
|
||||
commentId: F:TinyLife.Objects.Vehicle.Action
|
||||
id: Action
|
||||
parent: TinyLife.Objects.Vehicle
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Action
|
||||
nameWithType: Vehicle.Action
|
||||
fullName: TinyLife.Objects.Vehicle.Action
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Vehicle.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Action
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 35
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nThe id of the drive action.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
[DataMember]
|
||||
|
||||
public Guid Action
|
||||
return:
|
||||
type: System.Guid
|
||||
content.vb: >-
|
||||
<DataMember>
|
||||
|
||||
Public Action As Guid
|
||||
attributes:
|
||||
- type: System.Runtime.Serialization.DataMemberAttribute
|
||||
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
|
||||
arguments: []
|
||||
- uid: TinyLife.Objects.Vehicle.Type
|
||||
commentId: F:TinyLife.Objects.Vehicle.Type
|
||||
id: Type
|
||||
|
@ -193,7 +234,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Type
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 35
|
||||
startLine: 40
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -232,7 +273,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 40
|
||||
startLine: 45
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -253,41 +294,6 @@ items:
|
|||
nameWithType.vb: Vehicle.New(Guid, Map, Vector2, Vehicle.VehicleType)
|
||||
fullName.vb: TinyLife.Objects.Vehicle.New(System.Guid, TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, TinyLife.Objects.Vehicle.VehicleType)
|
||||
name.vb: New(Guid, Map, Vector2, VehicleType)
|
||||
- uid: TinyLife.Objects.Vehicle.UpdateDriving(TinyLife.Actions.PathfindAction)
|
||||
commentId: M:TinyLife.Objects.Vehicle.UpdateDriving(TinyLife.Actions.PathfindAction)
|
||||
id: UpdateDriving(TinyLife.Actions.PathfindAction)
|
||||
parent: TinyLife.Objects.Vehicle
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: UpdateDriving(PathfindAction)
|
||||
nameWithType: Vehicle.UpdateDriving(PathfindAction)
|
||||
fullName: TinyLife.Objects.Vehicle.UpdateDriving(TinyLife.Actions.PathfindAction)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Vehicle.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: UpdateDriving
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 59
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nUpdates this vehicle using the <xref href=\"TinyLife.Actions.PathfindAction\" data-throw-if-not-resolved=\"false\"></xref> whose <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> is driving this vehicle\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public virtual void UpdateDriving(PathfindAction action)
|
||||
parameters:
|
||||
- id: action
|
||||
type: TinyLife.Actions.PathfindAction
|
||||
description: The action whose <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> is driving this vehicle
|
||||
content.vb: Public Overridable Sub UpdateDriving(action As PathfindAction)
|
||||
overload: TinyLife.Objects.Vehicle.UpdateDriving*
|
||||
exceptions:
|
||||
- type: System.InvalidOperationException
|
||||
commentId: T:System.InvalidOperationException
|
||||
- uid: TinyLife.Objects.Vehicle.GetSpeed
|
||||
commentId: M:TinyLife.Objects.Vehicle.GetSpeed
|
||||
id: GetSpeed
|
||||
|
@ -306,7 +312,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetSpeed
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 82
|
||||
startLine: 63
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -337,7 +343,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Update
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 91
|
||||
startLine: 72
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -380,7 +386,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Draw
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 97
|
||||
startLine: 86
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -410,38 +416,6 @@ items:
|
|||
nameWithType.vb: Vehicle.Draw(GameTime, Object, Vector2, Color?, List(Of StaticSpriteBatch.Item))
|
||||
fullName.vb: TinyLife.Objects.Vehicle.Draw(Microsoft.Xna.Framework.GameTime, Object, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Color?, System.Collections.Generic.List(Of MLEM.Graphics.StaticSpriteBatch.Item))
|
||||
name.vb: Draw(GameTime, Object, Vector2, Color?, List(Of Item))
|
||||
- uid: TinyLife.Objects.Vehicle.Validate
|
||||
commentId: M:TinyLife.Objects.Vehicle.Validate
|
||||
id: Validate
|
||||
parent: TinyLife.Objects.Vehicle
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Validate()
|
||||
nameWithType: Vehicle.Validate()
|
||||
fullName: TinyLife.Objects.Vehicle.Validate()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/Objects/Vehicle.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 106
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nThis method is called when this object is loaded from disk.\nReturning false on this method causes the object to be removed from the map.\nBy default, this method invokes <xref href=\"TinyLife.Objects.MapObject.OnValidated\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.MapObject.OnEventsAttachable\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public override bool Validate()
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: false if the object is not valid, true otherwise
|
||||
content.vb: Public Overrides Function Validate() As Boolean
|
||||
overridden: TinyLife.Objects.MapObject.Validate
|
||||
overload: TinyLife.Objects.Vehicle.Validate*
|
||||
- uid: TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.Vehicle.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
id: OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
|
@ -460,7 +434,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnCameraRotationChanged
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 112
|
||||
startLine: 95
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -496,7 +470,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OnRemoved
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 119
|
||||
startLine: 102
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -525,7 +499,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ResetToStatic
|
||||
path: ../TinyLife/Objects/Vehicle.cs
|
||||
startLine: 125
|
||||
startLine: 108
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -619,6 +593,12 @@ references:
|
|||
name: OnValidated
|
||||
nameWithType: MapObject.OnValidated
|
||||
fullName: TinyLife.Objects.MapObject.OnValidated
|
||||
- uid: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
commentId: E:TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: OnValidatedEarly
|
||||
nameWithType: MapObject.OnValidatedEarly
|
||||
fullName: TinyLife.Objects.MapObject.OnValidatedEarly
|
||||
- uid: TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
commentId: E:TinyLife.Objects.MapObject.OnEventsAttachable
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -720,6 +700,38 @@ references:
|
|||
name: RectangleF
|
||||
isExternal: true
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
commentId: M:TinyLife.Objects.MapObject.ValidateEarly
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: ValidateEarly()
|
||||
nameWithType: MapObject.ValidateEarly()
|
||||
fullName: TinyLife.Objects.MapObject.ValidateEarly()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.ValidateEarly
|
||||
name: ValidateEarly
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.Validate
|
||||
commentId: M:TinyLife.Objects.MapObject.Validate
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: Validate()
|
||||
nameWithType: MapObject.Validate()
|
||||
fullName: TinyLife.Objects.MapObject.Validate()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.Validate
|
||||
name: Validate
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.Validate
|
||||
name: Validate
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person)
|
||||
commentId: M:TinyLife.Objects.MapObject.GetCategories(TinyLife.Objects.Person)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2265,47 +2277,6 @@ references:
|
|||
- uid: Microsoft.Xna.Framework
|
||||
name: Framework
|
||||
isExternal: true
|
||||
- uid: TinyLife.Actions.PathfindAction
|
||||
commentId: T:TinyLife.Actions.PathfindAction
|
||||
parent: TinyLife.Actions
|
||||
name: PathfindAction
|
||||
nameWithType: PathfindAction
|
||||
fullName: TinyLife.Actions.PathfindAction
|
||||
- uid: TinyLife.Objects.Person
|
||||
commentId: T:TinyLife.Objects.Person
|
||||
parent: TinyLife.Objects
|
||||
name: Person
|
||||
nameWithType: Person
|
||||
fullName: TinyLife.Objects.Person
|
||||
- uid: System.InvalidOperationException
|
||||
commentId: T:System.InvalidOperationException
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception
|
||||
name: InvalidOperationException
|
||||
nameWithType: InvalidOperationException
|
||||
fullName: System.InvalidOperationException
|
||||
- uid: TinyLife.Objects.Vehicle.UpdateDriving*
|
||||
commentId: Overload:TinyLife.Objects.Vehicle.UpdateDriving
|
||||
name: UpdateDriving
|
||||
nameWithType: Vehicle.UpdateDriving
|
||||
fullName: TinyLife.Objects.Vehicle.UpdateDriving
|
||||
- uid: TinyLife.Actions
|
||||
commentId: N:TinyLife.Actions
|
||||
name: TinyLife.Actions
|
||||
nameWithType: TinyLife.Actions
|
||||
fullName: TinyLife.Actions
|
||||
spec.csharp:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Actions
|
||||
name: Actions
|
||||
spec.vb:
|
||||
- uid: TinyLife
|
||||
name: TinyLife
|
||||
- name: .
|
||||
- uid: TinyLife.Actions
|
||||
name: Actions
|
||||
- uid: TinyLife.Objects.Vehicle.GetSpeed*
|
||||
commentId: Overload:TinyLife.Objects.Vehicle.GetSpeed
|
||||
name: GetSpeed
|
||||
|
@ -2634,38 +2605,6 @@ references:
|
|||
name: Generic
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
||||
- uid: TinyLife.Objects.MapObject.Validate
|
||||
commentId: M:TinyLife.Objects.MapObject.Validate
|
||||
parent: TinyLife.Objects.MapObject
|
||||
name: Validate()
|
||||
nameWithType: MapObject.Validate()
|
||||
fullName: TinyLife.Objects.MapObject.Validate()
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Objects.MapObject.Validate
|
||||
name: Validate
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Objects.MapObject.Validate
|
||||
name: Validate
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.Vehicle.Validate*
|
||||
commentId: Overload:TinyLife.Objects.Vehicle.Validate
|
||||
name: Validate
|
||||
nameWithType: Vehicle.Validate
|
||||
fullName: TinyLife.Objects.Vehicle.Validate
|
||||
- uid: System.Boolean
|
||||
commentId: T:System.Boolean
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
name: bool
|
||||
nameWithType: bool
|
||||
fullName: bool
|
||||
nameWithType.vb: Boolean
|
||||
fullName.vb: Boolean
|
||||
name.vb: Boolean
|
||||
- uid: TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
commentId: M:TinyLife.Objects.MapObject.OnCameraRotationChanged(MLEM.Misc.Direction2,MLEM.Misc.Direction2)
|
||||
parent: TinyLife.Objects.MapObject
|
||||
|
@ -2759,3 +2698,14 @@ references:
|
|||
name: ResetToStatic
|
||||
nameWithType: Vehicle.ResetToStatic
|
||||
fullName: TinyLife.Objects.Vehicle.ResetToStatic
|
||||
- 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
|
||||
|
|
|
@ -23,7 +23,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Visibility
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 725
|
||||
startLine: 739
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -52,7 +52,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WhenVisible
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 730
|
||||
startLine: 744
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -80,7 +80,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WhenVisibleExt
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 734
|
||||
startLine: 748
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -108,7 +108,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HideZoomedOut
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 738
|
||||
startLine: 752
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -136,7 +136,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Static
|
||||
path: ../TinyLife/Objects/MapObject.cs
|
||||
startLine: 743
|
||||
startLine: 757
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
|
|
@ -23,7 +23,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: VoiceStyle
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3470
|
||||
startLine: 3489
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -33,6 +33,7 @@ items:
|
|||
content: public enum VoiceStyle
|
||||
content.vb: Public Enum VoiceStyle
|
||||
extensionMethods:
|
||||
- TinyLife.Objects.VoiceStyle.TinyLife.Utilities.Extensions.GetMostFittingStyle
|
||||
- TinyLife.Objects.VoiceStyle.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
- uid: TinyLife.Objects.VoiceStyle.Low
|
||||
commentId: F:TinyLife.Objects.VoiceStyle.Low
|
||||
|
@ -52,7 +53,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Low
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3473
|
||||
startLine: 3492
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -78,7 +79,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: High
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3474
|
||||
startLine: 3493
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -104,7 +105,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Child
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3475
|
||||
startLine: 3494
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -130,7 +131,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Baby
|
||||
path: ../TinyLife/Objects/Person.cs
|
||||
startLine: 3477
|
||||
startLine: 3496
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -167,6 +168,27 @@ references:
|
|||
- name: .
|
||||
- uid: TinyLife.Objects
|
||||
name: Objects
|
||||
- uid: TinyLife.Objects.VoiceStyle.TinyLife.Utilities.Extensions.GetMostFittingStyle
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
parent: TinyLife.Utilities.Extensions
|
||||
definition: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
name: GetMostFittingStyle(VoiceStyle)
|
||||
nameWithType: Extensions.GetMostFittingStyle(VoiceStyle)
|
||||
fullName: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
name: GetMostFittingStyle
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.VoiceStyle
|
||||
name: VoiceStyle
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
name: GetMostFittingStyle
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.VoiceStyle
|
||||
name: VoiceStyle
|
||||
- name: )
|
||||
- uid: TinyLife.Objects.VoiceStyle.TinyLife.Utilities.Extensions.JsonCopy``1
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
parent: TinyLife.Utilities.Extensions
|
||||
|
@ -201,6 +223,31 @@ references:
|
|||
- uid: TinyLife.Objects.VoiceStyle
|
||||
name: VoiceStyle
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
commentId: M:TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
name: GetMostFittingStyle(VoiceStyle)
|
||||
nameWithType: Extensions.GetMostFittingStyle(VoiceStyle)
|
||||
fullName: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
spec.csharp:
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
name: GetMostFittingStyle
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.VoiceStyle
|
||||
name: VoiceStyle
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: TinyLife.Utilities.Extensions.GetMostFittingStyle(TinyLife.Objects.VoiceStyle)
|
||||
name: GetMostFittingStyle
|
||||
- name: (
|
||||
- uid: TinyLife.Objects.VoiceStyle
|
||||
name: VoiceStyle
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions
|
||||
commentId: T:TinyLife.Utilities.Extensions
|
||||
parent: TinyLife.Utilities
|
||||
name: Extensions
|
||||
nameWithType: Extensions
|
||||
fullName: TinyLife.Utilities.Extensions
|
||||
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
||||
name: JsonCopy<T>(T)
|
||||
|
@ -229,12 +276,6 @@ references:
|
|||
- name: (
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: TinyLife.Utilities.Extensions
|
||||
commentId: T:TinyLife.Utilities.Extensions
|
||||
parent: TinyLife.Utilities
|
||||
name: Extensions
|
||||
nameWithType: Extensions
|
||||
fullName: TinyLife.Utilities.Extensions
|
||||
- uid: TinyLife.Utilities
|
||||
commentId: N:TinyLife.Utilities
|
||||
name: TinyLife.Utilities
|
||||
|
|
|
@ -27,7 +27,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: WornClothes
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 214
|
||||
startLine: 219
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -76,7 +76,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Type
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 221
|
||||
startLine: 226
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -115,7 +115,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Colors
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 228
|
||||
startLine: 233
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -154,7 +154,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FromStorage
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 233
|
||||
startLine: 238
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -193,7 +193,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CustomPrice
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 239
|
||||
startLine: 244
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -236,7 +236,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 246
|
||||
startLine: 251
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -274,7 +274,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetColor
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 256
|
||||
startLine: 261
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -312,7 +312,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Validate
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 264
|
||||
startLine: 269
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
|
@ -343,15 +343,17 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetPrice
|
||||
path: ../TinyLife/Objects/Clothes.cs
|
||||
startLine: 277
|
||||
startLine: 285
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Objects
|
||||
summary: "\nReturns this clothing item's price, which is either the <xref href=\"TinyLife.Objects.WornClothes.CustomPrice\" data-throw-if-not-resolved=\"false\"></xref> or the underlying <xref href=\"TinyLife.Objects.Clothes\" data-throw-if-not-resolved=\"false\"></xref> type's <xref href=\"TinyLife.Objects.Clothes.Price\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public float GetPrice()
|
||||
return:
|
||||
type: System.Single
|
||||
description: This clothing item's price.
|
||||
content.vb: Public Function GetPrice() As Single
|
||||
overload: TinyLife.Objects.WornClothes.GetPrice*
|
||||
references:
|
||||
|
@ -914,6 +916,16 @@ references:
|
|||
name: Validate
|
||||
nameWithType: WornClothes.Validate
|
||||
fullName: TinyLife.Objects.WornClothes.Validate
|
||||
- uid: TinyLife.Objects.WornClothes.CustomPrice
|
||||
commentId: F:TinyLife.Objects.WornClothes.CustomPrice
|
||||
name: CustomPrice
|
||||
nameWithType: WornClothes.CustomPrice
|
||||
fullName: TinyLife.Objects.WornClothes.CustomPrice
|
||||
- uid: TinyLife.Objects.Clothes.Price
|
||||
commentId: F:TinyLife.Objects.Clothes.Price
|
||||
name: Price
|
||||
nameWithType: Clothes.Price
|
||||
fullName: TinyLife.Objects.Clothes.Price
|
||||
- uid: TinyLife.Objects.WornClothes.GetPrice*
|
||||
commentId: Overload:TinyLife.Objects.WornClothes.GetPrice
|
||||
name: GetPrice
|
||||
|
|
|
@ -8,6 +8,7 @@ items:
|
|||
- TinyLife.Objects.ActionSpot
|
||||
- TinyLife.Objects.AgeGroup
|
||||
- TinyLife.Objects.Bathtub
|
||||
- TinyLife.Objects.Book
|
||||
- TinyLife.Objects.BreakableFurniture
|
||||
- TinyLife.Objects.BreakableFurniture.BrokenBehavior
|
||||
- TinyLife.Objects.Chimney
|
||||
|
@ -53,6 +54,7 @@ items:
|
|||
- TinyLife.Objects.PregnancyAbility
|
||||
- TinyLife.Objects.ScreenObject
|
||||
- TinyLife.Objects.SpeakStyle
|
||||
- TinyLife.Objects.StylePreference
|
||||
- TinyLife.Objects.TrashBag
|
||||
- TinyLife.Objects.TrashCan
|
||||
- TinyLife.Objects.UnfinishedWoodwork
|
||||
|
@ -88,6 +90,11 @@ references:
|
|||
name: Bathtub
|
||||
nameWithType: Bathtub
|
||||
fullName: TinyLife.Objects.Bathtub
|
||||
- uid: TinyLife.Objects.Book
|
||||
commentId: T:TinyLife.Objects.Book
|
||||
name: Book
|
||||
nameWithType: Book
|
||||
fullName: TinyLife.Objects.Book
|
||||
- uid: TinyLife.Objects.BreakableFurniture
|
||||
commentId: T:TinyLife.Objects.BreakableFurniture
|
||||
parent: TinyLife.Objects
|
||||
|
@ -147,6 +154,12 @@ references:
|
|||
name: ClothesIntention
|
||||
nameWithType: ClothesIntention
|
||||
fullName: TinyLife.Objects.ClothesIntention
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
commentId: T:TinyLife.Objects.StylePreference
|
||||
parent: TinyLife.Objects
|
||||
name: StylePreference
|
||||
nameWithType: StylePreference
|
||||
fullName: TinyLife.Objects.StylePreference
|
||||
- uid: TinyLife.Objects.CornerFurniture
|
||||
commentId: T:TinyLife.Objects.CornerFurniture
|
||||
parent: TinyLife.Objects
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TypeCategory
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 298
|
||||
startLine: 300
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -51,7 +51,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Major
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 303
|
||||
startLine: 305
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -79,7 +79,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Minor
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 307
|
||||
startLine: 309
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -107,7 +107,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Hidden
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 312
|
||||
startLine: 314
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -823,7 +823,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MasterChef
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 142
|
||||
startLine: 143
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -850,7 +850,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SmartKid
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 145
|
||||
startLine: 146
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -877,7 +877,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GymRat
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 149
|
||||
startLine: 150
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -904,7 +904,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HouseholdHero
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 152
|
||||
startLine: 153
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -931,7 +931,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ComputerAddict
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 155
|
||||
startLine: 156
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -958,7 +958,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FriendOfEveryone
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 158
|
||||
startLine: 159
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -985,7 +985,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Millionaire
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 162
|
||||
startLine: 163
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1012,7 +1012,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CapableCarpenter
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 165
|
||||
startLine: 166
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1039,7 +1039,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PerfectPainter
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 168
|
||||
startLine: 169
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1048,33 +1048,6 @@ items:
|
|||
return:
|
||||
type: TinyLife.PersonalityType
|
||||
content.vb: Public Shared ReadOnly PerfectPainter As PersonalityType
|
||||
- uid: TinyLife.PersonalityType.CityNative
|
||||
commentId: F:TinyLife.PersonalityType.CityNative
|
||||
id: CityNative
|
||||
parent: TinyLife.PersonalityType
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: CityNative
|
||||
nameWithType: PersonalityType.CityNative
|
||||
fullName: TinyLife.PersonalityType.CityNative
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/PersonalityType.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CityNative
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 171
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
syntax:
|
||||
content: public static readonly PersonalityType CityNative
|
||||
return:
|
||||
type: TinyLife.PersonalityType
|
||||
content.vb: Public Shared ReadOnly CityNative As PersonalityType
|
||||
- uid: TinyLife.PersonalityType.ReadBaby
|
||||
commentId: F:TinyLife.PersonalityType.ReadBaby
|
||||
id: ReadBaby
|
||||
|
@ -1093,7 +1066,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ReadBaby
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 174
|
||||
startLine: 172
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1120,7 +1093,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CommunicativeBaby
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 177
|
||||
startLine: 175
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1129,6 +1102,33 @@ items:
|
|||
return:
|
||||
type: TinyLife.PersonalityType
|
||||
content.vb: Public Shared ReadOnly CommunicativeBaby As PersonalityType
|
||||
- uid: TinyLife.PersonalityType.CityNative
|
||||
commentId: F:TinyLife.PersonalityType.CityNative
|
||||
id: CityNative
|
||||
parent: TinyLife.PersonalityType
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: CityNative
|
||||
nameWithType: PersonalityType.CityNative
|
||||
fullName: TinyLife.PersonalityType.CityNative
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: TinyLife/PersonalityType.cs
|
||||
branch: main
|
||||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CityNative
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 179
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
syntax:
|
||||
content: public static readonly PersonalityType CityNative
|
||||
return:
|
||||
type: TinyLife.PersonalityType
|
||||
content.vb: Public Shared ReadOnly CityNative As PersonalityType
|
||||
- uid: TinyLife.PersonalityType.Name
|
||||
commentId: F:TinyLife.PersonalityType.Name
|
||||
id: Name
|
||||
|
@ -1147,7 +1147,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 186
|
||||
startLine: 188
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1176,7 +1176,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Texture
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 190
|
||||
startLine: 192
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1205,7 +1205,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Incompatible
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 195
|
||||
startLine: 197
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1236,7 +1236,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BoostedSkills
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 202
|
||||
startLine: 204
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1270,7 +1270,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BoostedSkillTypes
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 209
|
||||
startLine: 211
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1304,7 +1304,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AllowedAges
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 214
|
||||
startLine: 216
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1335,7 +1335,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Category
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 218
|
||||
startLine: 220
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1366,7 +1366,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SourceString
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 220
|
||||
startLine: 222
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1399,7 +1399,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 227
|
||||
startLine: 229
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1437,7 +1437,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsCompatible
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 237
|
||||
startLine: 239
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1472,7 +1472,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CreateInfoGroup
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 247
|
||||
startLine: 249
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1513,7 +1513,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 262
|
||||
startLine: 264
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -1548,7 +1548,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FillRandomly
|
||||
path: ../TinyLife/PersonalityType.cs
|
||||
startLine: 273
|
||||
startLine: 275
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -22,7 +22,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Set
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1160
|
||||
startLine: 1162
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -51,7 +51,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Woodworking
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1166
|
||||
startLine: 1168
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -79,7 +79,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Workout
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1170
|
||||
startLine: 1172
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
@ -107,7 +107,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChildClothes
|
||||
path: ../TinyLife/GameImpl.cs
|
||||
startLine: 1174
|
||||
startLine: 1176
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
|
|
|
@ -28,7 +28,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ContainerType
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 558
|
||||
startLine: 608
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -67,7 +67,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Plate
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 563
|
||||
startLine: 613
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -96,7 +96,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Glass
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 570
|
||||
startLine: 620
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -125,7 +125,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Mug
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 577
|
||||
startLine: 627
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -154,7 +154,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Name
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 585
|
||||
startLine: 635
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -183,7 +183,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: IsDrink
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 589
|
||||
startLine: 639
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -212,7 +212,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: .ctor
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 603
|
||||
startLine: 653
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -259,7 +259,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetFilled
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 616
|
||||
startLine: 666
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -297,7 +297,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetEmpty
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 625
|
||||
startLine: 675
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
@ -335,7 +335,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetDefaultTexture
|
||||
path: ../TinyLife/Skills/FoodType.cs
|
||||
startLine: 634
|
||||
startLine: 684
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Skills
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue