Fix accidental command bug in the console and unlink from Unity Services
This commit is contained in:
parent
c07524df9f
commit
54946df097
@ -194,18 +194,7 @@ MonoBehaviour:
|
|||||||
m_CharacterLimit: 0
|
m_CharacterLimit: 0
|
||||||
m_OnEndEdit:
|
m_OnEndEdit:
|
||||||
m_PersistentCalls:
|
m_PersistentCalls:
|
||||||
m_Calls:
|
m_Calls: []
|
||||||
- m_Target: {fileID: 1463006271}
|
|
||||||
m_MethodName: CallCommand
|
|
||||||
m_Mode: 1
|
|
||||||
m_Arguments:
|
|
||||||
m_ObjectArgument: {fileID: 0}
|
|
||||||
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
|
|
||||||
m_IntArgument: 0
|
|
||||||
m_FloatArgument: 0
|
|
||||||
m_StringArgument:
|
|
||||||
m_BoolArgument: 0
|
|
||||||
m_CallState: 2
|
|
||||||
m_TypeName: UnityEngine.UI.InputField+SubmitEvent, UnityEngine.UI, Version=1.0.0.0,
|
m_TypeName: UnityEngine.UI.InputField+SubmitEvent, UnityEngine.UI, Version=1.0.0.0,
|
||||||
Culture=neutral, PublicKeyToken=null
|
Culture=neutral, PublicKeyToken=null
|
||||||
m_OnValueChanged:
|
m_OnValueChanged:
|
||||||
|
@ -138,9 +138,15 @@ namespace Cyber.Console {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void Update() {
|
private void Update() {
|
||||||
|
// Inputs
|
||||||
if (Input.GetButtonDown("Console Toggle")) {
|
if (Input.GetButtonDown("Console Toggle")) {
|
||||||
Visible = !Visible;
|
Visible = !Visible;
|
||||||
}
|
}
|
||||||
|
if (Input.GetButtonDown("Enter Command")) {
|
||||||
|
CallCommand();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Slide up/down animation
|
||||||
RectTransform Rect = Panel.GetComponent<RectTransform>();
|
RectTransform Rect = Panel.GetComponent<RectTransform>();
|
||||||
Vector2 OffsetMin = Rect.offsetMin;
|
Vector2 OffsetMin = Rect.offsetMin;
|
||||||
if (Visible) {
|
if (Visible) {
|
||||||
|
@ -117,6 +117,22 @@ InputManager:
|
|||||||
type: 0
|
type: 0
|
||||||
axis: 0
|
axis: 0
|
||||||
joyNum: 0
|
joyNum: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
m_Name: Enter Command
|
||||||
|
descriptiveName:
|
||||||
|
descriptiveNegativeName:
|
||||||
|
negativeButton:
|
||||||
|
positiveButton: return
|
||||||
|
altNegativeButton:
|
||||||
|
altPositiveButton:
|
||||||
|
gravity: 1000
|
||||||
|
dead: 0.001
|
||||||
|
sensitivity: 1000
|
||||||
|
snap: 0
|
||||||
|
invert: 0
|
||||||
|
type: 0
|
||||||
|
axis: 0
|
||||||
|
joyNum: 0
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
m_Name: Mouse X
|
m_Name: Mouse X
|
||||||
descriptiveName:
|
descriptiveName:
|
||||||
|
@ -579,12 +579,15 @@ PlayerSettings:
|
|||||||
daydreamIconForeground: {fileID: 0}
|
daydreamIconForeground: {fileID: 0}
|
||||||
daydreamIconBackground: {fileID: 0}
|
daydreamIconBackground: {fileID: 0}
|
||||||
cloudServicesEnabled:
|
cloudServicesEnabled:
|
||||||
|
Build: 0
|
||||||
Collab: 0
|
Collab: 0
|
||||||
|
ErrorHub: 0
|
||||||
|
Hub: 0
|
||||||
UNet: 1
|
UNet: 1
|
||||||
facebookSdkVersion: 7.9.1
|
facebookSdkVersion: 7.9.1
|
||||||
apiCompatibilityLevel: 2
|
apiCompatibilityLevel: 2
|
||||||
cloudProjectId: ce574e88-0640-4292-be86-1e81238c639e
|
cloudProjectId:
|
||||||
projectName: Cyber
|
projectName:
|
||||||
organizationId: exne
|
organizationId:
|
||||||
cloudEnabled: 0
|
cloudEnabled: 0
|
||||||
enableNewInputSystem: 0
|
enableNewInputSystem: 0
|
||||||
|
Loading…
Reference in New Issue
Block a user