Add DocFX documentation.
This commit is contained in:
588
Voile/api/Voile.KeyInputAction.yml
Normal file
588
Voile/api/Voile.KeyInputAction.yml
Normal file
@@ -0,0 +1,588 @@
|
||||
### YamlMime:ManagedReference
|
||||
items:
|
||||
- uid: Voile.KeyInputAction
|
||||
commentId: T:Voile.KeyInputAction
|
||||
id: KeyInputAction
|
||||
parent: Voile
|
||||
children:
|
||||
- Voile.KeyInputAction.#ctor(Voile.KeyboardKey)
|
||||
- Voile.KeyInputAction.IsDown(Voile.InputSystem)
|
||||
- Voile.KeyInputAction.IsPressed(Voile.InputSystem)
|
||||
- Voile.KeyInputAction.IsReleased(Voile.InputSystem)
|
||||
- Voile.KeyInputAction.Key
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: KeyInputAction
|
||||
nameWithType: KeyInputAction
|
||||
fullName: Voile.KeyInputAction
|
||||
type: Class
|
||||
source:
|
||||
remote:
|
||||
path: Voile/Source/Input/InputAction.cs
|
||||
branch: main
|
||||
repo: git@github.com:dnesov/DaggerFramework.git
|
||||
id: KeyInputAction
|
||||
path: Source/Input/InputAction.cs
|
||||
startLine: 9
|
||||
assemblies:
|
||||
- Voile
|
||||
namespace: Voile
|
||||
syntax:
|
||||
content: 'public class KeyInputAction : InputAction'
|
||||
content.vb: Public Class KeyInputAction Inherits InputAction
|
||||
inheritance:
|
||||
- System.Object
|
||||
- Voile.InputAction
|
||||
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
|
||||
- uid: Voile.KeyInputAction.Key
|
||||
commentId: P:Voile.KeyInputAction.Key
|
||||
id: Key
|
||||
parent: Voile.KeyInputAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Key
|
||||
nameWithType: KeyInputAction.Key
|
||||
fullName: Voile.KeyInputAction.Key
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: Voile/Source/Input/InputAction.cs
|
||||
branch: main
|
||||
repo: git@github.com:dnesov/DaggerFramework.git
|
||||
id: Key
|
||||
path: Source/Input/InputAction.cs
|
||||
startLine: 11
|
||||
assemblies:
|
||||
- Voile
|
||||
namespace: Voile
|
||||
syntax:
|
||||
content: public KeyboardKey Key { get; }
|
||||
parameters: []
|
||||
return:
|
||||
type: Voile.KeyboardKey
|
||||
content.vb: Public ReadOnly Property Key As KeyboardKey
|
||||
overload: Voile.KeyInputAction.Key*
|
||||
- uid: Voile.KeyInputAction.#ctor(Voile.KeyboardKey)
|
||||
commentId: M:Voile.KeyInputAction.#ctor(Voile.KeyboardKey)
|
||||
id: '#ctor(Voile.KeyboardKey)'
|
||||
parent: Voile.KeyInputAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: KeyInputAction(KeyboardKey)
|
||||
nameWithType: KeyInputAction.KeyInputAction(KeyboardKey)
|
||||
fullName: Voile.KeyInputAction.KeyInputAction(Voile.KeyboardKey)
|
||||
type: Constructor
|
||||
source:
|
||||
remote:
|
||||
path: Voile/Source/Input/InputAction.cs
|
||||
branch: main
|
||||
repo: git@github.com:dnesov/DaggerFramework.git
|
||||
id: .ctor
|
||||
path: Source/Input/InputAction.cs
|
||||
startLine: 13
|
||||
assemblies:
|
||||
- Voile
|
||||
namespace: Voile
|
||||
syntax:
|
||||
content: public KeyInputAction(KeyboardKey keyboardKey)
|
||||
parameters:
|
||||
- id: keyboardKey
|
||||
type: Voile.KeyboardKey
|
||||
content.vb: Public Sub New(keyboardKey As KeyboardKey)
|
||||
overload: Voile.KeyInputAction.#ctor*
|
||||
nameWithType.vb: KeyInputAction.New(KeyboardKey)
|
||||
fullName.vb: Voile.KeyInputAction.New(Voile.KeyboardKey)
|
||||
name.vb: New(KeyboardKey)
|
||||
- uid: Voile.KeyInputAction.IsDown(Voile.InputSystem)
|
||||
commentId: M:Voile.KeyInputAction.IsDown(Voile.InputSystem)
|
||||
id: IsDown(Voile.InputSystem)
|
||||
parent: Voile.KeyInputAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: IsDown(InputSystem)
|
||||
nameWithType: KeyInputAction.IsDown(InputSystem)
|
||||
fullName: Voile.KeyInputAction.IsDown(Voile.InputSystem)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: Voile/Source/Input/InputAction.cs
|
||||
branch: main
|
||||
repo: git@github.com:dnesov/DaggerFramework.git
|
||||
id: IsDown
|
||||
path: Source/Input/InputAction.cs
|
||||
startLine: 17
|
||||
assemblies:
|
||||
- Voile
|
||||
namespace: Voile
|
||||
example: []
|
||||
syntax:
|
||||
content: public override bool IsDown(InputSystem inputHandler)
|
||||
parameters:
|
||||
- id: inputHandler
|
||||
type: Voile.InputSystem
|
||||
return:
|
||||
type: System.Boolean
|
||||
content.vb: Public Overrides Function IsDown(inputHandler As InputSystem) As Boolean
|
||||
overridden: Voile.InputAction.IsDown(Voile.InputSystem)
|
||||
overload: Voile.KeyInputAction.IsDown*
|
||||
- uid: Voile.KeyInputAction.IsPressed(Voile.InputSystem)
|
||||
commentId: M:Voile.KeyInputAction.IsPressed(Voile.InputSystem)
|
||||
id: IsPressed(Voile.InputSystem)
|
||||
parent: Voile.KeyInputAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: IsPressed(InputSystem)
|
||||
nameWithType: KeyInputAction.IsPressed(InputSystem)
|
||||
fullName: Voile.KeyInputAction.IsPressed(Voile.InputSystem)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: Voile/Source/Input/InputAction.cs
|
||||
branch: main
|
||||
repo: git@github.com:dnesov/DaggerFramework.git
|
||||
id: IsPressed
|
||||
path: Source/Input/InputAction.cs
|
||||
startLine: 22
|
||||
assemblies:
|
||||
- Voile
|
||||
namespace: Voile
|
||||
example: []
|
||||
syntax:
|
||||
content: public override bool IsPressed(InputSystem inputHandler)
|
||||
parameters:
|
||||
- id: inputHandler
|
||||
type: Voile.InputSystem
|
||||
return:
|
||||
type: System.Boolean
|
||||
content.vb: Public Overrides Function IsPressed(inputHandler As InputSystem) As Boolean
|
||||
overridden: Voile.InputAction.IsPressed(Voile.InputSystem)
|
||||
overload: Voile.KeyInputAction.IsPressed*
|
||||
- uid: Voile.KeyInputAction.IsReleased(Voile.InputSystem)
|
||||
commentId: M:Voile.KeyInputAction.IsReleased(Voile.InputSystem)
|
||||
id: IsReleased(Voile.InputSystem)
|
||||
parent: Voile.KeyInputAction
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: IsReleased(InputSystem)
|
||||
nameWithType: KeyInputAction.IsReleased(InputSystem)
|
||||
fullName: Voile.KeyInputAction.IsReleased(Voile.InputSystem)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: Voile/Source/Input/InputAction.cs
|
||||
branch: main
|
||||
repo: git@github.com:dnesov/DaggerFramework.git
|
||||
id: IsReleased
|
||||
path: Source/Input/InputAction.cs
|
||||
startLine: 27
|
||||
assemblies:
|
||||
- Voile
|
||||
namespace: Voile
|
||||
example: []
|
||||
syntax:
|
||||
content: public override bool IsReleased(InputSystem inputHandler)
|
||||
parameters:
|
||||
- id: inputHandler
|
||||
type: Voile.InputSystem
|
||||
return:
|
||||
type: System.Boolean
|
||||
content.vb: Public Overrides Function IsReleased(inputHandler As InputSystem) As Boolean
|
||||
overridden: Voile.InputAction.IsReleased(Voile.InputSystem)
|
||||
overload: Voile.KeyInputAction.IsReleased*
|
||||
references:
|
||||
- uid: Voile
|
||||
commentId: N:Voile
|
||||
href: Voile.html
|
||||
name: Voile
|
||||
nameWithType: Voile
|
||||
fullName: Voile
|
||||
- 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: Voile.InputAction
|
||||
commentId: T:Voile.InputAction
|
||||
parent: Voile
|
||||
href: Voile.InputAction.html
|
||||
name: InputAction
|
||||
nameWithType: InputAction
|
||||
fullName: Voile.InputAction
|
||||
- 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: System
|
||||
commentId: N:System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system
|
||||
name: System
|
||||
nameWithType: System
|
||||
fullName: System
|
||||
- uid: Voile.KeyInputAction.Key*
|
||||
commentId: Overload:Voile.KeyInputAction.Key
|
||||
href: Voile.KeyInputAction.html#Voile_KeyInputAction_Key
|
||||
name: Key
|
||||
nameWithType: KeyInputAction.Key
|
||||
fullName: Voile.KeyInputAction.Key
|
||||
- uid: Voile.KeyboardKey
|
||||
commentId: T:Voile.KeyboardKey
|
||||
parent: Voile
|
||||
href: Voile.KeyboardKey.html
|
||||
name: KeyboardKey
|
||||
nameWithType: KeyboardKey
|
||||
fullName: Voile.KeyboardKey
|
||||
- uid: Voile.KeyInputAction.#ctor*
|
||||
commentId: Overload:Voile.KeyInputAction.#ctor
|
||||
href: Voile.KeyInputAction.html#Voile_KeyInputAction__ctor_Voile_KeyboardKey_
|
||||
name: KeyInputAction
|
||||
nameWithType: KeyInputAction.KeyInputAction
|
||||
fullName: Voile.KeyInputAction.KeyInputAction
|
||||
nameWithType.vb: KeyInputAction.New
|
||||
fullName.vb: Voile.KeyInputAction.New
|
||||
name.vb: New
|
||||
- uid: Voile.InputAction.IsDown(Voile.InputSystem)
|
||||
commentId: M:Voile.InputAction.IsDown(Voile.InputSystem)
|
||||
parent: Voile.InputAction
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsDown_Voile_InputSystem_
|
||||
name: IsDown(InputSystem)
|
||||
nameWithType: InputAction.IsDown(InputSystem)
|
||||
fullName: Voile.InputAction.IsDown(Voile.InputSystem)
|
||||
spec.csharp:
|
||||
- uid: Voile.InputAction.IsDown(Voile.InputSystem)
|
||||
name: IsDown
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsDown_Voile_InputSystem_
|
||||
- name: (
|
||||
- uid: Voile.InputSystem
|
||||
name: InputSystem
|
||||
href: Voile.InputSystem.html
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: Voile.InputAction.IsDown(Voile.InputSystem)
|
||||
name: IsDown
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsDown_Voile_InputSystem_
|
||||
- name: (
|
||||
- uid: Voile.InputSystem
|
||||
name: InputSystem
|
||||
href: Voile.InputSystem.html
|
||||
- name: )
|
||||
- uid: Voile.KeyInputAction.IsDown*
|
||||
commentId: Overload:Voile.KeyInputAction.IsDown
|
||||
href: Voile.KeyInputAction.html#Voile_KeyInputAction_IsDown_Voile_InputSystem_
|
||||
name: IsDown
|
||||
nameWithType: KeyInputAction.IsDown
|
||||
fullName: Voile.KeyInputAction.IsDown
|
||||
- uid: Voile.InputSystem
|
||||
commentId: T:Voile.InputSystem
|
||||
parent: Voile
|
||||
href: Voile.InputSystem.html
|
||||
name: InputSystem
|
||||
nameWithType: InputSystem
|
||||
fullName: Voile.InputSystem
|
||||
- uid: System.Boolean
|
||||
commentId: T:System.Boolean
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
name: bool
|
||||
nameWithType: bool
|
||||
fullName: bool
|
||||
nameWithType.vb: Boolean
|
||||
fullName.vb: Boolean
|
||||
name.vb: Boolean
|
||||
- uid: Voile.InputAction.IsPressed(Voile.InputSystem)
|
||||
commentId: M:Voile.InputAction.IsPressed(Voile.InputSystem)
|
||||
parent: Voile.InputAction
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsPressed_Voile_InputSystem_
|
||||
name: IsPressed(InputSystem)
|
||||
nameWithType: InputAction.IsPressed(InputSystem)
|
||||
fullName: Voile.InputAction.IsPressed(Voile.InputSystem)
|
||||
spec.csharp:
|
||||
- uid: Voile.InputAction.IsPressed(Voile.InputSystem)
|
||||
name: IsPressed
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsPressed_Voile_InputSystem_
|
||||
- name: (
|
||||
- uid: Voile.InputSystem
|
||||
name: InputSystem
|
||||
href: Voile.InputSystem.html
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: Voile.InputAction.IsPressed(Voile.InputSystem)
|
||||
name: IsPressed
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsPressed_Voile_InputSystem_
|
||||
- name: (
|
||||
- uid: Voile.InputSystem
|
||||
name: InputSystem
|
||||
href: Voile.InputSystem.html
|
||||
- name: )
|
||||
- uid: Voile.KeyInputAction.IsPressed*
|
||||
commentId: Overload:Voile.KeyInputAction.IsPressed
|
||||
href: Voile.KeyInputAction.html#Voile_KeyInputAction_IsPressed_Voile_InputSystem_
|
||||
name: IsPressed
|
||||
nameWithType: KeyInputAction.IsPressed
|
||||
fullName: Voile.KeyInputAction.IsPressed
|
||||
- uid: Voile.InputAction.IsReleased(Voile.InputSystem)
|
||||
commentId: M:Voile.InputAction.IsReleased(Voile.InputSystem)
|
||||
parent: Voile.InputAction
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsReleased_Voile_InputSystem_
|
||||
name: IsReleased(InputSystem)
|
||||
nameWithType: InputAction.IsReleased(InputSystem)
|
||||
fullName: Voile.InputAction.IsReleased(Voile.InputSystem)
|
||||
spec.csharp:
|
||||
- uid: Voile.InputAction.IsReleased(Voile.InputSystem)
|
||||
name: IsReleased
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsReleased_Voile_InputSystem_
|
||||
- name: (
|
||||
- uid: Voile.InputSystem
|
||||
name: InputSystem
|
||||
href: Voile.InputSystem.html
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: Voile.InputAction.IsReleased(Voile.InputSystem)
|
||||
name: IsReleased
|
||||
href: Voile.InputAction.html#Voile_InputAction_IsReleased_Voile_InputSystem_
|
||||
- name: (
|
||||
- uid: Voile.InputSystem
|
||||
name: InputSystem
|
||||
href: Voile.InputSystem.html
|
||||
- name: )
|
||||
- uid: Voile.KeyInputAction.IsReleased*
|
||||
commentId: Overload:Voile.KeyInputAction.IsReleased
|
||||
href: Voile.KeyInputAction.html#Voile_KeyInputAction_IsReleased_Voile_InputSystem_
|
||||
name: IsReleased
|
||||
nameWithType: KeyInputAction.IsReleased
|
||||
fullName: Voile.KeyInputAction.IsReleased
|
||||
Reference in New Issue
Block a user