public ImageInformation(string path,double height,double width,_Placement placement)
 {
     Path = (string)path.Clone();
     Width = width;
     Height = height;
     Placement = placement;
 }
 public ImageInformation()
 {
     Path = "EMPTY PATH";
     Width = 120;
     Height= 120;
     Placement = _Placement.Inline;
 }
Beispiel #3
0
 // Start is called before the first frame update
 void Start()
 {
     _placement = GetComponent <_Placement>();
     vectorMath = GetComponent <VectorMath>();
 }