Created
October 27, 2017 09:39
-
-
Save rdeioris/292ad2dc64dc99672d9745b8c1c82c1e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class Gas : Mineral | |
| { | |
| // Update is called once per frame | |
| void Update() | |
| { | |
| transform.position += Vector3.up * 0.1f * Time.deltaTime; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment