merge into dev scene

This commit is contained in:
Soulaha Balde 2022-10-19 22:49:02 -04:00
parent 97176fa0de
commit 577acaa515
4 changed files with 3191 additions and 33 deletions

3183
Assets/Scenes/Dev.unity Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 739ca6d2c9f3b5b4a8885b94cf11f074
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1959,7 +1959,6 @@ GameObject:
- component: {fileID: 1211811537}
- component: {fileID: 1211811541}
- component: {fileID: 1211811542}
- component: {fileID: 1211811543}
m_Layer: 0
m_Name: Player
m_TagString: Untagged
@ -2088,37 +2087,6 @@ MonoBehaviour:
gunPos: {fileID: 2098497450}
canvasRect: {fileID: 3217252}
hitMarkerRect: {fileID: 1301531513}
--- !u!114 &1211811543
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1211811536}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 62899f850307741f2a39c98a8b639597, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Actions: {fileID: -944628639613478452, guid: 2faf170916d7d8e459e10cbfc223b3a8,
type: 3}
m_NotificationBehavior: 0
m_UIInputModule: {fileID: 0}
m_DeviceLostEvent:
m_PersistentCalls:
m_Calls: []
m_DeviceRegainedEvent:
m_PersistentCalls:
m_Calls: []
m_ControlsChangedEvent:
m_PersistentCalls:
m_Calls: []
m_ActionEvents: []
m_NeverAutoSwitchControlSchemes: 0
m_DefaultControlScheme:
m_DefaultActionMap: Player
m_SplitScreenIndex: -1
m_Camera: {fileID: 1530935837}
--- !u!1 &1301531512
GameObject:
m_ObjectHideFlags: 0

View File

@ -55,7 +55,7 @@ public class CharacterMovement : MonoBehaviour
if (canWalk)
{
Vector2 inputMovement = value.ReadValue<Vector2>();
rawInputMovement = new Vector3(inputMovement.x, 0, inputMovement.y);
rawInputMovement = new Vector3(-inputMovement.x, 0, inputMovement.y);
}
}