TinyLifeWeb/docs/api/TinyLife.World.Soundscape.yml

1075 lines
37 KiB
YAML
Raw Normal View History

2022-01-01 17:06:03 +01:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.World.Soundscape
commentId: T:TinyLife.World.Soundscape
id: Soundscape
parent: TinyLife.World
children:
2022-09-05 14:19:42 +02:00
- TinyLife.World.Soundscape.#ctor(TinyLife.World.Soundscape.IntensityDelegate,Microsoft.Xna.Framework.Audio.SoundEffect[])
2022-10-18 13:03:11 +02:00
- TinyLife.World.Soundscape.GetDaytimePercentage(TinyLife.World.Map)
2024-07-09 18:54:47 +02:00
- 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)
2022-01-01 17:06:03 +01:00
- 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
source:
remote:
path: TinyLife/World/Soundscape.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-01-01 17:06:03 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Soundscape
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Soundscape.cs
2024-07-26 12:47:59 +02:00
startLine: 16
2022-01-01 17:06:03 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
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>.
2022-01-01 17:06:03 +01:00
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
source:
remote:
path: TinyLife/World/Soundscape.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-01-01 17:06:03 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Soundscapes
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Soundscape.cs
2024-07-26 12:47:59 +02:00
startLine: 22
2022-01-01 17:06:03 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
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.
2022-01-01 17:06:03 +01:00
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)
2022-09-05 14:19:42 +02:00
- 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[])'
2022-01-01 17:06:03 +01:00
parent: TinyLife.World.Soundscape
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
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[])
2022-01-01 17:06:03 +01:00
type: Constructor
source:
remote:
path: TinyLife/World/Soundscape.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-01-01 17:06:03 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Soundscape.cs
2024-07-26 12:47:59 +02:00
startLine: 48
2022-01-01 17:06:03 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: Creates a new soundscape with the given settings.
2022-01-01 17:06:03 +01:00
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
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.Audio.SoundEffect[]
2022-01-01 17:06:03 +01:00
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*
2023-03-30 18:07:55 +02:00
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())
2022-01-01 17:06:03 +01:00
- 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
source:
remote:
path: TinyLife/World/Soundscape.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-01-01 17:06:03 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Update
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Soundscape.cs
2024-07-26 12:47:59 +02:00
startLine: 58
2022-01-01 17:06:03 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
summary: Updates this soundscape, querying its intensity function and playing its sound effects.
2022-01-01 17:06:03 +01:00
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
2024-01-07 16:53:47 +01:00
description: The game's camera.
2022-01-01 17:06:03 +01:00
content.vb: Public Overridable Sub Update(map As Map, camera As Camera)
overload: TinyLife.World.Soundscape.Update*
2022-10-18 13:03:11 +02:00
- 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
source:
remote:
path: TinyLife/World/Soundscape.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-10-18 13:03:11 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetDaytimePercentage
path: ../TinyLife/World/Soundscape.cs
2024-07-26 12:47:59 +02:00
startLine: 77
2022-10-18 13:03:11 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2024-01-07 16:53:47 +01:00
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>.
2022-10-18 13:03:11 +02:00
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*
2024-07-09 18:54:47 +02:00
- 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)
2022-10-18 13:03:11 +02:00
parent: TinyLife.World.Soundscape
langs:
- csharp
- vb
2024-07-09 18:54:47 +02:00
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)
2022-10-18 13:03:11 +02:00
type: Method
source:
remote:
path: TinyLife/World/Soundscape.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-10-18 13:03:11 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2024-07-09 18:54:47 +02:00
id: GetObjectDensity
2022-10-18 13:03:11 +02:00
path: ../TinyLife/World/Soundscape.cs
2024-07-26 12:47:59 +02:00
startLine: 88
2022-10-18 13:03:11 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
syntax:
2024-07-09 18:54:47 +02:00
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
- id: cameraWorldPos
type: Microsoft.Xna.Framework.Vector2
- id: predicate
type: System.Func{{T},System.Boolean}
- id: maxDistance
type: System.Int32
- id: maxAmount
type: System.Int32
typeParameters:
- id: T
return:
type: System.Single
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
source:
remote:
path: TinyLife/World/Soundscape.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetTileDensity
path: ../TinyLife/World/Soundscape.cs
2024-07-26 12:47:59 +02:00
startLine: 104
2024-07-09 18:54:47 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
syntax:
content: public static float GetTileDensity(Map map, Vector2 cameraWorldPos, Func<Tile, bool> predicate, int maxDistance, int maxAmount)
2022-10-18 13:03:11 +02:00
parameters:
- id: map
type: TinyLife.World.Map
- id: cameraWorldPos
type: Microsoft.Xna.Framework.Vector2
2024-07-09 18:54:47 +02:00
- id: predicate
type: System.Func{TinyLife.World.Tile,System.Boolean}
- id: maxDistance
type: System.Int32
- id: maxAmount
type: System.Int32
2022-10-18 13:03:11 +02:00
return:
type: System.Single
2024-07-09 18:54:47 +02:00
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)
2022-01-01 17:06:03 +01:00
references:
- uid: TinyLife.World.Soundscape.Soundscapes
commentId: F:TinyLife.World.Soundscape.Soundscapes
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Soundscapes
2023-03-30 18:07:55 +02:00
name: Soundscapes
nameWithType: Soundscape.Soundscapes
fullName: TinyLife.World.Soundscape.Soundscapes
2022-01-01 17:06:03 +01:00
- uid: TinyLife.World
commentId: N:TinyLife.World
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2022-01-01 17:06:03 +01:00
name: TinyLife.World
nameWithType: TinyLife.World
fullName: TinyLife.World
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.World
name: World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.World
name: World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.html
2022-01-01 17:06:03 +01:00
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
2022-01-01 17:06:03 +01:00
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
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)
2022-01-01 17:06:03 +01:00
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2022-01-01 17:06:03 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-01-01 17:06:03 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-01-01 17:06:03 +01:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2022-01-01 17:06:03 +01:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-01-01 17:06:03 +01:00
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
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)
2022-01-01 17:06:03 +01:00
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2022-01-01 17:06:03 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-01-01 17:06:03 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-01-01 17:06:03 +01:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-01-01 17:06:03 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-01-01 17:06:03 +01:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2022-01-01 17:06:03 +01:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-01-01 17:06:03 +01:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-01-01 17:06:03 +01:00
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-01-01 17:06:03 +01:00
name: GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
2022-01-01 17:06:03 +01:00
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-01-01 17:06:03 +01:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-01-01 17:06:03 +01:00
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-01-01 17:06:03 +01:00
name: GetType()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
2022-01-01 17:06:03 +01:00
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-01-01 17:06:03 +01:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-01-01 17:06:03 +01:00
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-01-01 17:06:03 +01:00
name: MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
2022-01-01 17:06:03 +01:00
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-01-01 17:06:03 +01:00
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-01-01 17:06:03 +01:00
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
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)
2022-01-01 17:06:03 +01:00
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2022-01-01 17:06:03 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-01-01 17:06:03 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-01-01 17:06:03 +01:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-01-01 17:06:03 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-01-01 17:06:03 +01:00
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2022-01-01 17:06:03 +01:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-01-01 17:06:03 +01:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-01-01 17:06:03 +01:00
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-01-01 17:06:03 +01:00
name: ToString()
2023-03-30 18:07:55 +02:00
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
2022-01-01 17:06:03 +01:00
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-01-01 17:06:03 +01:00
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-01-01 17:06:03 +01:00
- 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)
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
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)
2022-01-01 17:06:03 +01:00
spec.csharp:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Soundscape)
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: <
- uid: TinyLife.World.Soundscape
name: Soundscape
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2023-03-30 18:07:55 +02:00
- name: '>'
2022-01-01 17:06:03 +01:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.World.Soundscape
name: Soundscape
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2022-01-01 17:06:03 +01:00
- name: )
spec.vb:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Soundscape)
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: (
- name: Of
- name: " "
- uid: TinyLife.World.Soundscape
name: Soundscape
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2023-03-30 18:07:55 +02:00
- name: )
2022-01-01 17:06:03 +01:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.World.Soundscape
name: Soundscape
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2022-01-01 17:06:03 +01:00
- name: )
- uid: System
commentId: N:System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2022-01-01 17:06:03 +01:00
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2022-01-01 17:06:03 +01:00
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)
2023-03-30 18:07:55 +02:00
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: <
- name: T
- name: '>'
2022-01-01 17:06:03 +01:00
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: (
- name: Of
- name: " "
- name: T
- name: )
2022-01-01 17:06:03 +01:00
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html
2022-01-01 17:06:03 +01:00
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2022-01-01 17:06:03 +01:00
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.html
2022-01-01 17:06:03 +01:00
- 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
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Update_TinyLife_World_Map_MLEM_Cameras_Camera_
2023-03-30 18:07:55 +02:00
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
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Update_TinyLife_World_Map_MLEM_Cameras_Camera_
2023-03-30 18:07:55 +02:00
- name: (
- uid: TinyLife.World.Map
name: Map
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Map.html
2023-03-30 18:07:55 +02:00
- 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
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Update_TinyLife_World_Map_MLEM_Cameras_Camera_
2023-03-30 18:07:55 +02:00
- name: (
- uid: TinyLife.World.Map
name: Map
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Map.html
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
- uid: MLEM.Cameras.Camera
name: Camera
isExternal: true
- name: )
2022-01-01 17:06:03 +01:00
- 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
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-01-01 17:06:03 +01:00
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
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-01-01 17:06:03 +01:00
- name: <
- uid: TinyLife.World.Soundscape
name: Soundscape
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2022-01-01 17:06:03 +01:00
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
2022-01-01 17:06:03 +01:00
- uid: TinyLife.World.Soundscape
name: Soundscape
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2022-01-01 17:06:03 +01:00
- name: )
- uid: System.Collections.Generic.List`1
commentId: T:System.Collections.Generic.List`1
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-01-01 17:06:03 +01:00
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
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2022-01-01 17:06:03 +01:00
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
2022-01-01 17:06:03 +01:00
- name: T
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2022-01-01 17:06:03 +01:00
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
2023-03-30 18:07:55 +02:00
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
2022-01-01 17:06:03 +01:00
- uid: TinyLife.World.Soundscape.#ctor*
commentId: Overload:TinyLife.World.Soundscape.#ctor
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape__ctor_TinyLife_World_Soundscape_IntensityDelegate_Microsoft_Xna_Framework_Audio_SoundEffect___
2022-01-01 17:06:03 +01:00
name: Soundscape
nameWithType: Soundscape.Soundscape
fullName: TinyLife.World.Soundscape.Soundscape
2023-03-30 18:07:55 +02:00
nameWithType.vb: Soundscape.New
fullName.vb: TinyLife.World.Soundscape.New
name.vb: New
2022-01-01 17:06:03 +01:00
- uid: TinyLife.World.Soundscape.IntensityDelegate
commentId: T:TinyLife.World.Soundscape.IntensityDelegate
parent: TinyLife.World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2022-01-01 17:06:03 +01:00
name: Soundscape.IntensityDelegate
nameWithType: Soundscape.IntensityDelegate
fullName: TinyLife.World.Soundscape.IntensityDelegate
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife.World.Soundscape
name: Soundscape
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.World.Soundscape.IntensityDelegate
name: IntensityDelegate
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.IntensityDelegate.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife.World.Soundscape
name: Soundscape
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.World.Soundscape.IntensityDelegate
name: IntensityDelegate
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.IntensityDelegate.html
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Audio.SoundEffect[]
2022-01-01 17:06:03 +01:00
isExternal: true
name: SoundEffect[]
nameWithType: SoundEffect[]
2022-09-05 14:19:42 +02:00
fullName: Microsoft.Xna.Framework.Audio.SoundEffect[]
2022-01-01 17:06:03 +01:00
nameWithType.vb: SoundEffect()
2022-09-05 14:19:42 +02:00
fullName.vb: Microsoft.Xna.Framework.Audio.SoundEffect()
2022-01-01 17:06:03 +01:00
name.vb: SoundEffect()
spec.csharp:
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Audio.SoundEffect
2022-01-01 17:06:03 +01:00
name: SoundEffect
isExternal: true
2023-03-30 18:07:55 +02:00
- name: '['
- name: ']'
2022-01-01 17:06:03 +01:00
spec.vb:
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Audio.SoundEffect
2022-01-01 17:06:03 +01:00
name: SoundEffect
isExternal: true
2023-03-30 18:07:55 +02:00
- name: (
- name: )
2022-01-01 17:06:03 +01:00
- uid: TinyLife.World.Soundscape.Update*
commentId: Overload:TinyLife.World.Soundscape.Update
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_Update_TinyLife_World_Map_MLEM_Cameras_Camera_
2022-01-01 17:06:03 +01:00
name: Update
nameWithType: Soundscape.Update
fullName: TinyLife.World.Soundscape.Update
- uid: TinyLife.World.Map
commentId: T:TinyLife.World.Map
parent: TinyLife.World
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Map.html
2022-01-01 17:06:03 +01:00
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
2023-03-30 18:07:55 +02:00
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
2022-10-18 13:03:11 +02:00
- uid: TinyLife.World.Map.Time
commentId: P:TinyLife.World.Map.Time
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Map.html#TinyLife_World_Map_Time
2023-03-30 18:07:55 +02:00
name: Time
nameWithType: Map.Time
fullName: TinyLife.World.Map.Time
2022-10-18 13:03:11 +02:00
- uid: TinyLife.World.Soundscape.GetDaytimePercentage*
commentId: Overload:TinyLife.World.Soundscape.GetDaytimePercentage
2024-01-07 16:53:47 +01:00
href: TinyLife.World.Soundscape.html#TinyLife_World_Soundscape_GetDaytimePercentage_TinyLife_World_Map_
2022-10-18 13:03:11 +02:00
name: GetDaytimePercentage
nameWithType: Soundscape.GetDaytimePercentage
fullName: TinyLife.World.Soundscape.GetDaytimePercentage
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.single
name: float
nameWithType: float
fullName: float
nameWithType.vb: Single
fullName.vb: Single
name.vb: Single
2024-07-09 18:54:47 +02:00
- 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
2022-10-18 13:03:11 +02:00
- 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
2024-07-09 18:54:47 +02:00
- 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
2022-10-18 13:03:11 +02:00
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
2023-03-30 18:07:55 +02:00
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
2024-07-09 18:54:47 +02:00
- 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: )