GDTKRecipe.craftingSeconds
public float craftingSeconds { get; }Description#
Gets the number of seconds need to craft this recipe
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKRecipe target) { float result = target.craftingSeconds; } }