Skip to content
Snippets Groups Projects
Select Git revision
  • 76b861965d64fe1b29cc7b9506338dec4355193b
  • 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

CharacterDialog.cs

Blame
  • Fact.cs 675 B
    using UnityEngine;
    
    public abstract class Fact
    {
        public int Id;
        public GameObject Representation;
    
    }
    //I am not sure if we ever need to attach these to an object, so one script for all for now...
    public class PointFact : Fact
    {
        public Vector3 Point;
        public Vector3 Normal;
    }
    public class LineFact : Fact
    {
        //Id's of the 2 Point-Facts that are connected
        public int Pid1, Pid2;
        
    }
    public class AngleFact : Fact
    {
        //Id's of the 3 Point-Facts, where Pid2 is the point, where the angle is
        public int Pid1, Pid2, Pid3;
    }
    public class OnLineFact : Fact
    {
        //Id's of the 3 Point-Facs that are on one line
        public int Pid1, Pid2, Pid3;
    }