Fixed VR issue
- Fixed werid graphical bug with VR. Issue was with the struct for VrDeviceInfo.
This commit is contained in:
parent
7f7e907c89
commit
1c2fc08a07
8 changed files with 62 additions and 131 deletions
|
|
@ -34,7 +34,7 @@ namespace Examples
|
|||
var filePath = Console.ReadLine();
|
||||
var name = Path.GetFileNameWithoutExtension(filePath);
|
||||
var dir = examples + filePath + ".cs";
|
||||
|
||||
|
||||
// run example if it exists
|
||||
if (File.Exists(dir))
|
||||
{
|
||||
|
|
@ -46,14 +46,14 @@ namespace Examples
|
|||
catch(TargetInvocationException e)
|
||||
{
|
||||
Console.WriteLine(e.InnerException.Message);
|
||||
Console.WriteLine(e.InnerException.StackTrace);
|
||||
Console.WriteLine(e.InnerException.StackTrace);
|
||||
}
|
||||
Console.WriteLine();
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine(filePath + " is not a valid example");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue