mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-04-18 22:57:35 -05:00
1. Added rough fx for erruption 2. Created a sign prefab for level use 3. fixed UI cooldown
19 lines
352 B
C#
19 lines
352 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class lavaflow : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
GetComponent<Rigidbody>().velocity = new Vector3(0, -50, 0);
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|