Here are the examples of the csharp api Assets.Scripts.Utils.GizmosHelper.GizmosHelper.DrawCubeImp(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Color) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
19
View Source File : GizMosHelper.cs
License : Apache License 2.0
Project Creator : 365082218
License : Apache License 2.0
Project Creator : 365082218
private void DrawCubes() {
foreach (var item in Cubes) {
DrawCubeImp(item.Value.Position, item.Value.Center, item.Value.Size, item.Value.Scale, item.Value.Up, item.Value.Forward, item.Value.Color);
}
}