Newer
Older
app-47-android / Assets / Scripts / FallingItem.cs
@a_kuznecov a_kuznecov on 22 Jun 2023 227 bytes First Commit
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class FallingItem : MonoBehaviour
{

    void FixedUpdate()
    {
        transform.Translate(Vector3.down* (10 * Time.deltaTime));
    }
}