mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-05 12:29:09 +01:00
842 lines
28 KiB
YAML
842 lines
28 KiB
YAML
### 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.GetForestedness(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)
|
|
- 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
|
|
branch: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: Soundscape
|
|
path: ../TinyLife/World/Soundscape.cs
|
|
startLine: 17
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: "\nA soundscape is a set of background/ambient sounds that play to enhance the atmosphere of the game.\nTo create a new soundscape, it can be added to <xref href=\"TinyLife.World.Soundscape.Soundscapes\" data-throw-if-not-resolved=\"false\"></xref>.\n"
|
|
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
|
|
branch: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: Soundscapes
|
|
path: ../TinyLife/World/Soundscape.cs
|
|
startLine: 23
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: "\nThe set of soundscapes that are active in the game.\nTo 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.\n"
|
|
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
|
|
source:
|
|
remote:
|
|
path: TinyLife/World/Soundscape.cs
|
|
branch: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: .ctor
|
|
path: ../TinyLife/World/Soundscape.cs
|
|
startLine: 46
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: "\nCreates a new soundscape with the given settings.\n"
|
|
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
|
|
source:
|
|
remote:
|
|
path: TinyLife/World/Soundscape.cs
|
|
branch: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: Update
|
|
path: ../TinyLife/World/Soundscape.cs
|
|
startLine: 56
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: "\nUpdates this soundscape, querying its intensity function and playing its sound effects.\n"
|
|
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
|
|
source:
|
|
remote:
|
|
path: TinyLife/World/Soundscape.cs
|
|
branch: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: GetDaytimePercentage
|
|
path: ../TinyLife/World/Soundscape.cs
|
|
startLine: 75
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: "\nReturns 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>.\n"
|
|
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.GetForestedness(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)
|
|
commentId: M:TinyLife.World.Soundscape.GetForestedness(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)
|
|
id: GetForestedness(TinyLife.World.Map,Microsoft.Xna.Framework.Vector2)
|
|
parent: TinyLife.World.Soundscape
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GetForestedness(Map, Vector2)
|
|
nameWithType: Soundscape.GetForestedness(Map, Vector2)
|
|
fullName: TinyLife.World.Soundscape.GetForestedness(TinyLife.World.Map, Microsoft.Xna.Framework.Vector2)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: TinyLife/World/Soundscape.cs
|
|
branch: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: GetForestedness
|
|
path: ../TinyLife/World/Soundscape.cs
|
|
startLine: 92
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.World
|
|
summary: "\nReturns a number between 0 and 1 that determines how forested an area around the given <code data-dev-comment-type=\"paramref\" class=\"paramref\">cameraWorldPos</code> is.\n"
|
|
example: []
|
|
syntax:
|
|
content: public static float GetForestedness(Map map, Vector2 cameraWorldPos)
|
|
parameters:
|
|
- id: map
|
|
type: TinyLife.World.Map
|
|
description: The map.
|
|
- id: cameraWorldPos
|
|
type: Microsoft.Xna.Framework.Vector2
|
|
description: The camera position, in world coordinates.
|
|
return:
|
|
type: System.Single
|
|
description: The forestedness.
|
|
content.vb: Public Shared Function GetForestedness(map As Map, cameraWorldPos As Vector2) As Single
|
|
overload: TinyLife.World.Soundscape.GetForestedness*
|
|
references:
|
|
- uid: TinyLife.World.Soundscape.Soundscapes
|
|
commentId: F:TinyLife.World.Soundscape.Soundscapes
|
|
name: Soundscapes
|
|
nameWithType: Soundscape.Soundscapes
|
|
fullName: TinyLife.World.Soundscape.Soundscapes
|
|
- uid: TinyLife.World
|
|
commentId: N:TinyLife.World
|
|
name: TinyLife.World
|
|
nameWithType: TinyLife.World
|
|
fullName: TinyLife.World
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
- name: .
|
|
- uid: TinyLife.World
|
|
name: World
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
- name: .
|
|
- uid: TinyLife.World
|
|
name: World
|
|
- 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)
|
|
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
|
|
- name: <
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
- name: '>'
|
|
- name: (
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Soundscape)
|
|
name: JsonCopy
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
- name: )
|
|
- name: (
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
- 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)
|
|
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.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
commentId: M:TinyLife.World.Soundscape.Update(TinyLife.World.Map,MLEM.Cameras.Camera)
|
|
isExternal: true
|
|
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
|
|
- name: (
|
|
- uid: TinyLife.World.Map
|
|
name: Map
|
|
- 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
|
|
- name: (
|
|
- uid: TinyLife.World.Map
|
|
name: Map
|
|
- 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
|
|
- 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
|
|
- 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
|
|
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
|
|
name: Soundscape.IntensityDelegate
|
|
nameWithType: Soundscape.IntensityDelegate
|
|
fullName: TinyLife.World.Soundscape.IntensityDelegate
|
|
spec.csharp:
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
- name: .
|
|
- uid: TinyLife.World.Soundscape.IntensityDelegate
|
|
name: IntensityDelegate
|
|
spec.vb:
|
|
- uid: TinyLife.World.Soundscape
|
|
name: Soundscape
|
|
- name: .
|
|
- uid: TinyLife.World.Soundscape.IntensityDelegate
|
|
name: IntensityDelegate
|
|
- 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
|
|
name: Update
|
|
nameWithType: Soundscape.Update
|
|
fullName: TinyLife.World.Soundscape.Update
|
|
- uid: TinyLife.World.Map
|
|
commentId: T:TinyLife.World.Map
|
|
parent: TinyLife.World
|
|
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
|
|
name: Time
|
|
nameWithType: Map.Time
|
|
fullName: TinyLife.World.Map.Time
|
|
- uid: TinyLife.World.Soundscape.GetDaytimePercentage*
|
|
commentId: Overload:TinyLife.World.Soundscape.GetDaytimePercentage
|
|
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.GetForestedness*
|
|
commentId: Overload:TinyLife.World.Soundscape.GetForestedness
|
|
name: GetForestedness
|
|
nameWithType: Soundscape.GetForestedness
|
|
fullName: TinyLife.World.Soundscape.GetForestedness
|
|
- 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: 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
|