Skip to content
Snippets Groups Projects
Select Git revision
  • 9560c9c7f5aa9e4246e2a1b9ec111a037fa8ae66
  • main default protected
2 results

RoadPart.cs

Blame
  • RoadPart.cs 248 B
    using System;
    using UnityEngine;
    
    [Serializable]
    public class RoadPart
    {
    	[Tooltip("The road part prefab")]
    	public GameObject gameObject;
    
    	[Tooltip("How many time this road part appears in the road")]
    	[Range(1, 30)]
    	public int iterations = 3;
    }