Commit b2015dec authored by 18김민수's avatar 18김민수

Minor Change 2

parent 444de0b9
......@@ -179,7 +179,7 @@ MonoBehaviour:
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_FontData:
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
m_FontSize: 55
m_FontSize: 35
m_FontStyle: 0
m_BestFit: 0
m_MinSize: 10
......@@ -328,8 +328,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 703, y: 302}
m_SizeDelta: {x: 329.5, y: 128.5}
m_AnchoredPosition: {x: 279, y: 141.2}
m_SizeDelta: {x: 150.8, y: 77.1}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &363807590
MonoBehaviour:
......@@ -843,7 +843,7 @@ MonoBehaviour:
m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}
m_Name:
m_EditorClassIdentifier:
m_UiScaleMode: 0
m_UiScaleMode: 1
m_ReferencePixelsPerUnit: 100
m_ScaleFactor: 1
m_ReferenceResolution: {x: 800, y: 600}
......
......@@ -6,4 +6,9 @@ public class FlatLandObject : MonoBehaviour
{
public Vector2 speedVector = new Vector2(0, 0);
public double properTime = 0;
public virtual void Update()
{
properTime += Time.deltaTime;
}
}
......@@ -16,7 +16,7 @@ public class Square : FlatLandObject
}
// Update is called once per frame
void Update()
public override void Update()
{
if(Input.GetMouseButtonDown(1)) // If right mouse button is clicked
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment