using System.Collections;
using System.Collections.Generic;
using UnityEngine;


public class DiffScale : MonoBehaviour
{
    
    // Start is called before the first frame update
    void Start()
    {
        Ui.motiv = 5f;
    }

    // Update is called once per frame
    void Update()
    {
        float ech = Ui.difficulty/10;
        
        transform.localScale = new Vector3 (ech,1,1);

        if (Ui.difficulty < 0)
        {
            Ui.difficulty = 0;
        }


    }
}