Skip to content

Instantly share code, notes, and snippets.

@rdeioris
Created October 27, 2017 09:39
Show Gist options
  • Save rdeioris/292ad2dc64dc99672d9745b8c1c82c1e to your computer and use it in GitHub Desktop.
Save rdeioris/292ad2dc64dc99672d9745b8c1c82c1e to your computer and use it in GitHub Desktop.
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