This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
snakeinabox/Assets/Scripts/Design.cs
2020-09-04 22:31:02 -07:00

24 lines
No EOL
496 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu]
public class Design : ScriptableObject
{
[Header("View")]
public Vector3 headOffset = new Vector3(0, 0, -60);
public Vector3 pivotPos;
public float scale = 60;
[Header("Game")]
public Vector3Int bounds = new Vector3Int(4, 3, 4);
public int foodValue = 6;
[Header("AI")]
public float aiIQ = 0.5f;
public int aiMaxChances = 12;
public float boxSpring = 6;
}