mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-01 03:10:49 +01:00
1035 lines
36 KiB
YAML
Generated
1035 lines
36 KiB
YAML
Generated
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: TinyLife.World.Soundscape
|
|
commentId: T:TinyLife.World.Soundscape
|
|
id: Soundscape
|
|
parent: TinyLife.World
|
|
children:
|
|
- TinyLife.World.Soundscape.#ctor(TinyLife.World.Soundscape.IntensityDelegate,Microsoft.Xna.Framework.Audio.SoundEffect[])
|
|
- TinyLife.World.Soundscape.GetDaytimePercentage(TinyLife.World.Map)
|
|
- TinyLife.World.Soundscape.GetObjectDensity``1(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Func{``0,System.Boolean},System.Int32,System.Int32)
|
|
- TinyLife.World.Soundscape.GetTileDensity(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Func{TinyLife.World.Tile,System.Boolean},System.Int32,System.Int32)
|
|
- TinyLife.World.Soundscape.Soundscapes
|
|
- TinyLife.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Soundscape
|
|
nameWithType: Soundscape
|
|
fullName: TinyLife.World.Soundscape
|
|
type: Class
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: >-
|
|
A soundscape is a set of background/ambient sounds that play to enhance the atmosphere of the game.
|
|
|
|
To create a new soundscape, it can be added to <xref href="TinyLife.World.Soundscape.Soundscapes" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public class Soundscape
|
|
content.vb: Public Class Soundscape
|
|
inheritance:
|
|
- System.Object
|
|
inheritedMembers:
|
|
- System.Object.Equals(System.Object)
|
|
- System.Object.Equals(System.Object,System.Object)
|
|
- System.Object.GetHashCode
|
|
- System.Object.GetType
|
|
- System.Object.MemberwiseClone
|
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
|
- System.Object.ToString
|
|
extensionMethods:
|
|
- TinyLife.World.Soundscape.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
- uid: TinyLife.World.Soundscape.Soundscapes
|
|
commentId: F:TinyLife.World.Soundscape.Soundscapes
|
|
id: Soundscapes
|
|
parent: TinyLife.World.Soundscape
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Soundscapes
|
|
nameWithType: Soundscape.Soundscapes
|
|
fullName: TinyLife.World.Soundscape.Soundscapes
|
|
type: Field
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: >-
|
|
The set of soundscapes that are active in the game.
|
|
|
|
To create a new soundscape and to have its <xref href="TinyLife.World.Soundscape.Update(TinyLife.World.Map%2cMLEM.Cameras.Camera)" data-throw-if-not-resolved="false"></xref> method called while in-game, it can be added to this collection.
|
|
example: []
|
|
syntax:
|
|
content: public static readonly List<Soundscape> Soundscapes
|
|
return:
|
|
type: System.Collections.Generic.List{TinyLife.World.Soundscape}
|
|
content.vb: Public Shared ReadOnly Soundscapes As List(Of Soundscape)
|
|
- uid: TinyLife.World.Soundscape.#ctor(TinyLife.World.Soundscape.IntensityDelegate,Microsoft.Xna.Framework.Audio.SoundEffect[])
|
|
commentId: M:TinyLife.World.Soundscape.#ctor(TinyLife.World.Soundscape.IntensityDelegate,Microsoft.Xna.Framework.Audio.SoundEffect[])
|
|
id: '#ctor(TinyLife.World.Soundscape.IntensityDelegate,Microsoft.Xna.Framework.Audio.SoundEffect[])'
|
|
parent: TinyLife.World.Soundscape
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Soundscape(IntensityDelegate, params SoundEffect[])
|
|
nameWithType: Soundscape.Soundscape(Soundscape.IntensityDelegate, params SoundEffect[])
|
|
fullName: TinyLife.World.Soundscape.Soundscape(TinyLife.World.Soundscape.IntensityDelegate, params Microsoft.Xna.Framework.Audio.SoundEffect[])
|
|
type: Constructor
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: Creates a new soundscape with the given settings.
|
|
example: []
|
|
syntax:
|
|
content: public Soundscape(Soundscape.IntensityDelegate intensityFunction, params SoundEffect[] sounds)
|
|
parameters:
|
|
- id: intensityFunction
|
|
type: TinyLife.World.Soundscape.IntensityDelegate
|
|
description: The intensity function that determines the intensity of this soundscape at any given position.
|
|
- id: sounds
|
|
type: Microsoft.Xna.Framework.Audio.SoundEffect[]
|
|
description: The set of sound effects that this soundscape should contain, which will be randomly chosen from.
|
|
content.vb: Public Sub New(intensityFunction As Soundscape.IntensityDelegate, ParamArray sounds As SoundEffect())
|
|
overload: TinyLife.World.Soundscape.#ctor*
|
|
nameWithType.vb: Soundscape.New(Soundscape.IntensityDelegate, ParamArray SoundEffect())
|
|
fullName.vb: TinyLife.World.Soundscape.New(TinyLife.World.Soundscape.IntensityDelegate, ParamArray Microsoft.Xna.Framework.Audio.SoundEffect())
|
|
name.vb: New(IntensityDelegate, ParamArray SoundEffect())
|
|
- uid: TinyLife.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
commentId: M:TinyLife.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
id: Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
parent: TinyLife.World.Soundscape
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Update(Map, Camera)
|
|
nameWithType: Soundscape.Update(Map, Camera)
|
|
fullName: TinyLife.World.Soundscape.Update(TinyLife.World.Map, MLEM.Cameras.Camera)
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: Updates this soundscape, querying its intensity function and playing its sound effects.
|
|
example: []
|
|
syntax:
|
|
content: public virtual void Update(Map map, Camera camera)
|
|
parameters:
|
|
- id: map
|
|
type: TinyLife.World.Map
|
|
description: The map that the soundscape should play on.
|
|
- id: camera
|
|
type: MLEM.Cameras.Camera
|
|
description: The game's camera.
|
|
content.vb: Public Overridable Sub Update(map As Map, camera As Camera)
|
|
overload: TinyLife.World.Soundscape.Update*
|
|
- uid: TinyLife.World.Soundscape.GetDaytimePercentage(TinyLife.World.Map)
|
|
commentId: M:TinyLife.World.Soundscape.GetDaytimePercentage(TinyLife.World.Map)
|
|
id: GetDaytimePercentage(TinyLife.World.Map)
|
|
parent: TinyLife.World.Soundscape
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetDaytimePercentage(Map)
|
|
nameWithType: Soundscape.GetDaytimePercentage(Map)
|
|
fullName: TinyLife.World.Soundscape.GetDaytimePercentage(TinyLife.World.Map)
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: Returns a number between 0 and 1 that determines how bright the sun currently is, based on the passed <xref href="TinyLife.World.Map" data-throw-if-not-resolved="false"></xref>'s <xref href="TinyLife.World.Map.Time" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public static float GetDaytimePercentage(Map map)
|
|
parameters:
|
|
- id: map
|
|
type: TinyLife.World.Map
|
|
description: The map.
|
|
return:
|
|
type: System.Single
|
|
description: The daytime percentage.
|
|
content.vb: Public Shared Function GetDaytimePercentage(map As Map) As Single
|
|
overload: TinyLife.World.Soundscape.GetDaytimePercentage*
|
|
- uid: TinyLife.World.Soundscape.GetObjectDensity``1(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Func{``0,System.Boolean},System.Int32,System.Int32)
|
|
commentId: M:TinyLife.World.Soundscape.GetObjectDensity``1(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Func{``0,System.Boolean},System.Int32,System.Int32)
|
|
id: GetObjectDensity``1(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Func{``0,System.Boolean},System.Int32,System.Int32)
|
|
parent: TinyLife.World.Soundscape
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetObjectDensity<T>(Map, Vector2, Func<T, bool>, int, int)
|
|
nameWithType: Soundscape.GetObjectDensity<T>(Map, Vector2, Func<T, bool>, int, int)
|
|
fullName: TinyLife.World.Soundscape.GetObjectDensity<T>(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, System.Func<T, bool>, int, int)
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: Returns a value between 0 and 1 that represents the density of objects of a certain type around a certain position.
|
|
example: []
|
|
syntax:
|
|
content: 'public static float GetObjectDensity<T>(Map map, Vector2 cameraWorldPos, Func<T, bool> predicate, int maxDistance, int maxAmount) where T : MapObject'
|
|
parameters:
|
|
- id: map
|
|
type: TinyLife.World.Map
|
|
description: The map.
|
|
- id: cameraWorldPos
|
|
type: Microsoft.Xna.Framework.Vector2
|
|
description: The position in the world that the density calculation should be centered around.
|
|
- id: predicate
|
|
type: System.Func{{T},System.Boolean}
|
|
description: A predicate that determines whether objects should count towards the density calculation.
|
|
- id: maxDistance
|
|
type: System.Int32
|
|
description: The maximum distance around the <code class="paramref">cameraWorldPos</code>.
|
|
- id: maxAmount
|
|
type: System.Int32
|
|
description: The maximum amount of objects that match the <code class="paramref">predicate</code> before the returned value is capped to 1.
|
|
typeParameters:
|
|
- id: T
|
|
description: The type of object to match.
|
|
return:
|
|
type: System.Single
|
|
description: The density.
|
|
content.vb: Public Shared Function GetObjectDensity(Of T As MapObject)(map As Map, cameraWorldPos As Vector2, predicate As Func(Of T, Boolean), maxDistance As Integer, maxAmount As Integer) As Single
|
|
overload: TinyLife.World.Soundscape.GetObjectDensity*
|
|
nameWithType.vb: Soundscape.GetObjectDensity(Of T)(Map, Vector2, Func(Of T, Boolean), Integer, Integer)
|
|
fullName.vb: TinyLife.World.Soundscape.GetObjectDensity(Of T)(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, System.Func(Of T, Boolean), Integer, Integer)
|
|
name.vb: GetObjectDensity(Of T)(Map, Vector2, Func(Of T, Boolean), Integer, Integer)
|
|
- uid: TinyLife.World.Soundscape.GetTileDensity(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Func{TinyLife.World.Tile,System.Boolean},System.Int32,System.Int32)
|
|
commentId: M:TinyLife.World.Soundscape.GetTileDensity(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Func{TinyLife.World.Tile,System.Boolean},System.Int32,System.Int32)
|
|
id: GetTileDensity(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2,System.Func{TinyLife.World.Tile,System.Boolean},System.Int32,System.Int32)
|
|
parent: TinyLife.World.Soundscape
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetTileDensity(Map, Vector2, Func<Tile, bool>, int, int)
|
|
nameWithType: Soundscape.GetTileDensity(Map, Vector2, Func<Tile, bool>, int, int)
|
|
fullName: TinyLife.World.Soundscape.GetTileDensity(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, System.Func<TinyLife.World.Tile, bool>, int, int)
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: Returns a value between 0 and 1 that represents the density of tiles of a certain type around a certain position.
|
|
example: []
|
|
syntax:
|
|
content: public static float GetTileDensity(Map map, Vector2 cameraWorldPos, Func<Tile, bool> predicate, int maxDistance, int maxAmount)
|
|
parameters:
|
|
- id: map
|
|
type: TinyLife.World.Map
|
|
description: The map.
|
|
- id: cameraWorldPos
|
|
type: Microsoft.Xna.Framework.Vector2
|
|
description: The position in the world that the density calculation should be centered around.
|
|
- id: predicate
|
|
type: System.Func{TinyLife.World.Tile,System.Boolean}
|
|
description: A predicate that determines whether tiles should count towards the density calculation.
|
|
- id: maxDistance
|
|
type: System.Int32
|
|
description: The maximum distance around the <code class="paramref">cameraWorldPos</code>.
|
|
- id: maxAmount
|
|
type: System.Int32
|
|
description: The maximum amount of tiles that match the <code class="paramref">predicate</code> before the returned value is capped to 1.
|
|
return:
|
|
type: System.Single
|
|
description: The density.
|
|
content.vb: Public Shared Function GetTileDensity(map As Map, cameraWorldPos As Vector2, predicate As Func(Of Tile, Boolean), maxDistance As Integer, maxAmount As Integer) As Single
|
|
overload: TinyLife.World.Soundscape.GetTileDensity*
|
|
nameWithType.vb: Soundscape.GetTileDensity(Map, Vector2, Func(Of Tile, Boolean), Integer, Integer)
|
|
fullName.vb: TinyLife.World.Soundscape.GetTileDensity(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2, System.Func(Of TinyLife.World.Tile, Boolean), Integer, Integer)
|
|
name.vb: GetTileDensity(Map, Vector2, Func(Of Tile, Boolean), Integer, Integer)
|
|
references:
|
|
- uid: TinyLife.World.Soundscape.Soundscapes
|
|
commentId: F:TinyLife.World.Soundscape.Soundscapes
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Soundscapes
|
|
name: Soundscapes
|
|
nameWithType: Soundscape.Soundscapes
|
|
fullName: TinyLife.World.Soundscape.Soundscapes
|
|
- uid: TinyLife.World
|
|
commentId: N:TinyLife.World
|
|
href: TinyLife.html
|
|
name: TinyLife.World
|
|
nameWithType: TinyLife.World
|
|
fullName: TinyLife.World
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.World
|
|
name: World
|
|
href: TinyLife.World.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.World
|
|
name: World
|
|
href: TinyLife.World.html
|
|
- uid: System.Object
|
|
commentId: T:System.Object
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
name: object
|
|
nameWithType: object
|
|
fullName: object
|
|
nameWithType.vb: Object
|
|
fullName.vb: Object
|
|
name.vb: Object
|
|
- uid: System.Object.Equals(System.Object)
|
|
commentId: M:System.Object.Equals(System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
name: Equals(object)
|
|
nameWithType: object.Equals(object)
|
|
fullName: object.Equals(object)
|
|
nameWithType.vb: Object.Equals(Object)
|
|
fullName.vb: Object.Equals(Object)
|
|
name.vb: Equals(Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
name: Equals(object, object)
|
|
nameWithType: object.Equals(object, object)
|
|
fullName: object.Equals(object, object)
|
|
nameWithType.vb: Object.Equals(Object, Object)
|
|
fullName.vb: Object.Equals(Object, Object)
|
|
name.vb: Equals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.GetHashCode
|
|
commentId: M:System.Object.GetHashCode
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
name: GetHashCode()
|
|
nameWithType: object.GetHashCode()
|
|
fullName: object.GetHashCode()
|
|
nameWithType.vb: Object.GetHashCode()
|
|
fullName.vb: Object.GetHashCode()
|
|
spec.csharp:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.GetType
|
|
commentId: M:System.Object.GetType
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
name: GetType()
|
|
nameWithType: object.GetType()
|
|
fullName: object.GetType()
|
|
nameWithType.vb: Object.GetType()
|
|
fullName.vb: Object.GetType()
|
|
spec.csharp:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.MemberwiseClone
|
|
commentId: M:System.Object.MemberwiseClone
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
name: MemberwiseClone()
|
|
nameWithType: object.MemberwiseClone()
|
|
fullName: object.MemberwiseClone()
|
|
nameWithType.vb: Object.MemberwiseClone()
|
|
fullName.vb: Object.MemberwiseClone()
|
|
spec.csharp:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
name: ReferenceEquals(object, object)
|
|
nameWithType: object.ReferenceEquals(object, object)
|
|
fullName: object.ReferenceEquals(object, object)
|
|
nameWithType.vb: Object.ReferenceEquals(Object, Object)
|
|
fullName.vb: Object.ReferenceEquals(Object, Object)
|
|
name.vb: ReferenceEquals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.ToString
|
|
commentId: M:System.Object.ToString
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
name: ToString()
|
|
nameWithType: object.ToString()
|
|
fullName: object.ToString()
|
|
nameWithType.vb: Object.ToString()
|
|
fullName.vb: Object.ToString()
|
|
spec.csharp:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.World.Soundscape.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
parent: TinyLife.Utilities.Extensions
|
|
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
name: JsonCopy<Soundscape>(Soundscape)
|
|
nameWithType: Extensions.JsonCopy<Soundscape>(Soundscape)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.Soundscape>(TinyLife.World.Soundscape)
|
|
nameWithType.vb: Extensions.JsonCopy(Of Soundscape)(Soundscape)
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.Soundscape)(TinyLife.World.Soundscape)
|
|
name.vb: JsonCopy(Of Soundscape)(Soundscape)
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Soundscape)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: <
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
href: TinyLife.World.Soundscape.html
|
|
- name: '>'
|
|
- name: (
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
href: TinyLife.World.Soundscape.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Soundscape)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
href: TinyLife.World.Soundscape.html
|
|
- name: )
|
|
- name: (
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
href: TinyLife.World.Soundscape.html
|
|
- name: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
name: JsonCopy<T>(T)
|
|
nameWithType: Extensions.JsonCopy<T>(T)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
|
|
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
|
|
name.vb: JsonCopy(Of T)(T)
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
- name: (
|
|
- name: T
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- name: (
|
|
- name: T
|
|
- name: )
|
|
- uid: TinyLife.Utilities.Extensions
|
|
commentId: T:TinyLife.Utilities.Extensions
|
|
parent: TinyLife.Utilities
|
|
href: TinyLife.Utilities.Extensions.html
|
|
name: Extensions
|
|
nameWithType: Extensions
|
|
fullName: TinyLife.Utilities.Extensions
|
|
- uid: TinyLife.Utilities
|
|
commentId: N:TinyLife.Utilities
|
|
href: TinyLife.html
|
|
name: TinyLife.Utilities
|
|
nameWithType: TinyLife.Utilities
|
|
fullName: TinyLife.Utilities
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Utilities
|
|
name: Utilities
|
|
href: TinyLife.Utilities.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Utilities
|
|
name: Utilities
|
|
href: TinyLife.Utilities.html
|
|
- uid: TinyLife.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
commentId: M:TinyLife.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
isExternal: true
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Update_TinyLife_World_Map_MLEM_Cameras_Camera_
|
|
name: Update(Map, Camera)
|
|
nameWithType: Soundscape.Update(Map, Camera)
|
|
fullName: TinyLife.World.Soundscape.Update(TinyLife.World.Map, MLEM.Cameras.Camera)
|
|
spec.csharp:
|
|
- uid: TinyLife.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
name: Update
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Update_TinyLife_World_Map_MLEM_Cameras_Camera_
|
|
- name: (
|
|
- uid: TinyLife.World.Map
|
|
name: Map
|
|
href: TinyLife.World.Map.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: MLEM.Cameras.Camera
|
|
name: Camera
|
|
isExternal: true
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
name: Update
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Update_TinyLife_World_Map_MLEM_Cameras_Camera_
|
|
- name: (
|
|
- uid: TinyLife.World.Map
|
|
name: Map
|
|
href: TinyLife.World.Map.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: MLEM.Cameras.Camera
|
|
name: Camera
|
|
isExternal: true
|
|
- name: )
|
|
- uid: System.Collections.Generic.List{TinyLife.World.Soundscape}
|
|
commentId: T:System.Collections.Generic.List{TinyLife.World.Soundscape}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.List`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
name: List<Soundscape>
|
|
nameWithType: List<Soundscape>
|
|
fullName: System.Collections.Generic.List<TinyLife.World.Soundscape>
|
|
nameWithType.vb: List(Of Soundscape)
|
|
fullName.vb: System.Collections.Generic.List(Of TinyLife.World.Soundscape)
|
|
name.vb: List(Of Soundscape)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.List`1
|
|
name: List
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
- name: <
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
href: TinyLife.World.Soundscape.html
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.List`1
|
|
name: List
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
href: TinyLife.World.Soundscape.html
|
|
- name: )
|
|
- uid: System.Collections.Generic.List`1
|
|
commentId: T:System.Collections.Generic.List`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
name: List<T>
|
|
nameWithType: List<T>
|
|
fullName: System.Collections.Generic.List<T>
|
|
nameWithType.vb: List(Of T)
|
|
fullName.vb: System.Collections.Generic.List(Of T)
|
|
name.vb: List(Of T)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.List`1
|
|
name: List
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.List`1
|
|
name: List
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: System.Collections.Generic
|
|
commentId: N:System.Collections.Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Collections.Generic
|
|
nameWithType: System.Collections.Generic
|
|
fullName: System.Collections.Generic
|
|
spec.csharp:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
spec.vb:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
- uid: TinyLife.World.Soundscape.#ctor*
|
|
commentId: Overload:TinyLife.World.Soundscape.#ctor
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape__ctor_TinyLife_World_Soundscape_IntensityDelegate_Microsoft_Xna_Framework_Audio_SoundEffect___
|
|
name: Soundscape
|
|
nameWithType: Soundscape.Soundscape
|
|
fullName: TinyLife.World.Soundscape.Soundscape
|
|
nameWithType.vb: Soundscape.New
|
|
fullName.vb: TinyLife.World.Soundscape.New
|
|
name.vb: New
|
|
- uid: TinyLife.World.Soundscape.IntensityDelegate
|
|
commentId: T:TinyLife.World.Soundscape.IntensityDelegate
|
|
parent: TinyLife.World
|
|
href: TinyLife.World.Soundscape.html
|
|
name: Soundscape.IntensityDelegate
|
|
nameWithType: Soundscape.IntensityDelegate
|
|
fullName: TinyLife.World.Soundscape.IntensityDelegate
|
|
spec.csharp:
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
href: TinyLife.World.Soundscape.html
|
|
- name: .
|
|
- uid: TinyLife.World.Soundscape.IntensityDelegate
|
|
name: IntensityDelegate
|
|
href: TinyLife.World.Soundscape.IntensityDelegate.html
|
|
spec.vb:
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
href: TinyLife.World.Soundscape.html
|
|
- name: .
|
|
- uid: TinyLife.World.Soundscape.IntensityDelegate
|
|
name: IntensityDelegate
|
|
href: TinyLife.World.Soundscape.IntensityDelegate.html
|
|
- uid: Microsoft.Xna.Framework.Audio.SoundEffect[]
|
|
isExternal: true
|
|
name: SoundEffect[]
|
|
nameWithType: SoundEffect[]
|
|
fullName: Microsoft.Xna.Framework.Audio.SoundEffect[]
|
|
nameWithType.vb: SoundEffect()
|
|
fullName.vb: Microsoft.Xna.Framework.Audio.SoundEffect()
|
|
name.vb: SoundEffect()
|
|
spec.csharp:
|
|
- uid: Microsoft.Xna.Framework.Audio.SoundEffect
|
|
name: SoundEffect
|
|
isExternal: true
|
|
- name: '['
|
|
- name: ']'
|
|
spec.vb:
|
|
- uid: Microsoft.Xna.Framework.Audio.SoundEffect
|
|
name: SoundEffect
|
|
isExternal: true
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.World.Soundscape.Update*
|
|
commentId: Overload:TinyLife.World.Soundscape.Update
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Update_TinyLife_World_Map_MLEM_Cameras_Camera_
|
|
name: Update
|
|
nameWithType: Soundscape.Update
|
|
fullName: TinyLife.World.Soundscape.Update
|
|
- uid: TinyLife.World.Map
|
|
commentId: T:TinyLife.World.Map
|
|
parent: TinyLife.World
|
|
href: TinyLife.World.Map.html
|
|
name: Map
|
|
nameWithType: Map
|
|
fullName: TinyLife.World.Map
|
|
- uid: MLEM.Cameras.Camera
|
|
commentId: T:MLEM.Cameras.Camera
|
|
parent: MLEM.Cameras
|
|
isExternal: true
|
|
name: Camera
|
|
nameWithType: Camera
|
|
fullName: MLEM.Cameras.Camera
|
|
- uid: MLEM.Cameras
|
|
commentId: N:MLEM.Cameras
|
|
isExternal: true
|
|
name: MLEM.Cameras
|
|
nameWithType: MLEM.Cameras
|
|
fullName: MLEM.Cameras
|
|
spec.csharp:
|
|
- uid: MLEM
|
|
name: MLEM
|
|
isExternal: true
|
|
- name: .
|
|
- uid: MLEM.Cameras
|
|
name: Cameras
|
|
isExternal: true
|
|
spec.vb:
|
|
- uid: MLEM
|
|
name: MLEM
|
|
isExternal: true
|
|
- name: .
|
|
- uid: MLEM.Cameras
|
|
name: Cameras
|
|
isExternal: true
|
|
- uid: TinyLife.World.Map.Time
|
|
commentId: P:TinyLife.World.Map.Time
|
|
href: TinyLife.World.Map.html#TinyLife_World_Map_Time
|
|
name: Time
|
|
nameWithType: Map.Time
|
|
fullName: TinyLife.World.Map.Time
|
|
- uid: TinyLife.World.Soundscape.GetDaytimePercentage*
|
|
commentId: Overload:TinyLife.World.Soundscape.GetDaytimePercentage
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_GetDaytimePercentage_TinyLife_World_Map_
|
|
name: GetDaytimePercentage
|
|
nameWithType: Soundscape.GetDaytimePercentage
|
|
fullName: TinyLife.World.Soundscape.GetDaytimePercentage
|
|
- 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: TinyLife.World.Soundscape.GetObjectDensity*
|
|
commentId: Overload:TinyLife.World.Soundscape.GetObjectDensity
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_GetObjectDensity__1_TinyLife_World_Map_Microsoft_Xna_Framework_Vector2_System_Func___0_System_Boolean__System_Int32_System_Int32_
|
|
name: GetObjectDensity
|
|
nameWithType: Soundscape.GetObjectDensity
|
|
fullName: TinyLife.World.Soundscape.GetObjectDensity
|
|
- uid: Microsoft.Xna.Framework.Vector2
|
|
commentId: T:Microsoft.Xna.Framework.Vector2
|
|
parent: Microsoft.Xna.Framework
|
|
isExternal: true
|
|
name: Vector2
|
|
nameWithType: Vector2
|
|
fullName: Microsoft.Xna.Framework.Vector2
|
|
- uid: System.Func{{T},System.Boolean}
|
|
commentId: T:System.Func{``0,System.Boolean}
|
|
parent: System
|
|
definition: System.Func`2
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
name: Func<T, bool>
|
|
nameWithType: Func<T, bool>
|
|
fullName: System.Func<T, bool>
|
|
nameWithType.vb: Func(Of T, Boolean)
|
|
fullName.vb: System.Func(Of T, Boolean)
|
|
name.vb: Func(Of T, Boolean)
|
|
spec.csharp:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
- name: <
|
|
- name: T
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Boolean
|
|
name: bool
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Boolean
|
|
name: Boolean
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: )
|
|
- uid: System.Int32
|
|
commentId: T:System.Int32
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.int32
|
|
name: int
|
|
nameWithType: int
|
|
fullName: int
|
|
nameWithType.vb: Integer
|
|
fullName.vb: Integer
|
|
name.vb: Integer
|
|
- 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: System.Func`2
|
|
commentId: T:System.Func`2
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
name: Func<T, TResult>
|
|
nameWithType: Func<T, TResult>
|
|
fullName: System.Func<T, TResult>
|
|
nameWithType.vb: Func(Of T, TResult)
|
|
fullName.vb: System.Func(Of T, TResult)
|
|
name.vb: Func(Of T, TResult)
|
|
spec.csharp:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
- name: <
|
|
- name: T
|
|
- name: ','
|
|
- name: " "
|
|
- name: TResult
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: ','
|
|
- name: " "
|
|
- name: TResult
|
|
- name: )
|
|
- uid: TinyLife.World.Soundscape.GetTileDensity*
|
|
commentId: Overload:TinyLife.World.Soundscape.GetTileDensity
|
|
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_GetTileDensity_TinyLife_World_Map_Microsoft_Xna_Framework_Vector2_System_Func_TinyLife_World_Tile_System_Boolean__System_Int32_System_Int32_
|
|
name: GetTileDensity
|
|
nameWithType: Soundscape.GetTileDensity
|
|
fullName: TinyLife.World.Soundscape.GetTileDensity
|
|
- uid: System.Func{TinyLife.World.Tile,System.Boolean}
|
|
commentId: T:System.Func{TinyLife.World.Tile,System.Boolean}
|
|
parent: System
|
|
definition: System.Func`2
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
name: Func<Tile, bool>
|
|
nameWithType: Func<Tile, bool>
|
|
fullName: System.Func<TinyLife.World.Tile, bool>
|
|
nameWithType.vb: Func(Of Tile, Boolean)
|
|
fullName.vb: System.Func(Of TinyLife.World.Tile, Boolean)
|
|
name.vb: Func(Of Tile, Boolean)
|
|
spec.csharp:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
- name: <
|
|
- uid: TinyLife.World.Tile
|
|
name: Tile
|
|
href: TinyLife.World.Tile.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Boolean
|
|
name: bool
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Func`2
|
|
name: Func
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.func-2
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: TinyLife.World.Tile
|
|
name: Tile
|
|
href: TinyLife.World.Tile.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Boolean
|
|
name: Boolean
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: )
|