Skip to content
Snippets Groups Projects
Select Git revision
  • e5185a081d9b75609ad6ccc10b2c901e23c06b37
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

LengthObject.cs

Blame
  • LengthObject.cs 374 B
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
        [CreateAssetMenu(fileName = "new DefaultObject", menuName = "Inventory System/Items/Length")]
    public class LengthObject : ItemObject
    {
        public string PointA;
        public string PointB;
        public double Lenght;
    
    
        public void Awake()
        {
           type = ItemType.LengthFact;
        }
    }