This commit is contained in:
Davcris911 2021-10-08 10:44:08 -04:00
parent 048c55914b
commit 880d031867
5 changed files with 141 additions and 4 deletions

View File

@ -0,0 +1,60 @@
fileFormatVersion: 2
guid: 8307d3932030aad41a1b448be4984572
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 1
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
: Editor
second:
enabled: 0
settings:
CPU: X86
OS: Windows
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 1
settings:
CPU: X86
DefaultValueInitialized: true
OS: Windows
- first:
Standalone: Linux64
second:
enabled: 0
settings:
CPU: None
- first:
Standalone: OSXUniversal
second:
enabled: 0
settings:
CPU: x86
- first:
Standalone: Win
second:
enabled: 1
settings:
CPU: AnyCPU
- first:
Standalone: Win64
second:
enabled: 0
settings:
CPU: None
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,60 @@
fileFormatVersion: 2
guid: 292f6ed49f968bb4892767b5d8c6a0ea
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 1
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
: Editor
second:
enabled: 0
settings:
CPU: X86_64
OS: Windows
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 1
settings:
CPU: X86_64
DefaultValueInitialized: true
OS: Windows
- first:
Standalone: Linux64
second:
enabled: 1
settings:
CPU: AnyCPU
- first:
Standalone: OSXUniversal
second:
enabled: 0
settings:
CPU: x86_64
- first:
Standalone: Win
second:
enabled: 0
settings:
CPU: None
- first:
Standalone: Win64
second:
enabled: 1
settings:
CPU: AnyCPU
userData:
assetBundleName:
assetBundleVariant:

View File

@ -61,13 +61,30 @@ namespace JoyCon
} }
#if DEBUG #if DEBUG
float moveHorizontal = Input.GetAxis("Horizontal"); movement_wasd();
float moveVertical = Input.GetAxis("Vertical");
transform.Rotate(0.0f, moveHorizontal * constSpeed * 2, 0.0f);
transform.Translate(0, 0, moveVertical * constSpeed / 20);
#endif #endif
} }
public bool IsWalking() => Mathf.Abs(_gyroMagnitude.Total) > 1; public bool IsWalking() => Mathf.Abs(_gyroMagnitude.Total) > 1;
private void movement_wasd()
{
float moveHorizontal = Input.GetAxis("Horizontal");
float moveVertical = Input.GetAxis("Vertical");
transform.Rotate(0.0f, moveHorizontal * constSpeed * 2, 0.0f);
transform.Translate(0, 0, moveVertical * constSpeed / 20);
}
}
public enum ChoiceOfMovement
{
wasd = 1,
teleport = 2,
joystick = 3,
joycon = 4,
omni = 5
} }
} }