-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from gelic-idealab/release/v0.5.8
Release/v0.5.8
- Loading branch information
Showing
23 changed files
with
608 additions
and
367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
Komodo/Assets/Packages/KomodoCore/Runtime/Scripts/RuntimeSession/EntityState.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using UnityEngine; | ||
|
||
namespace Komodo.Runtime | ||
{ | ||
[System.Serializable] | ||
public struct EntityState | ||
{ | ||
public int id; | ||
public Position latest; | ||
public bool render; | ||
public bool locked; | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Komodo/Assets/Packages/KomodoCore/Runtime/Scripts/RuntimeSession/EntityState.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
Komodo/Assets/Packages/KomodoCore/Runtime/Scripts/RuntimeSession/EntityType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using UnityEngine; | ||
|
||
namespace Komodo.Runtime | ||
{ | ||
//types of data in scene | ||
public enum Entity_Type | ||
{ | ||
none = -1, | ||
users_head = 0, | ||
users_Lhand = 1, | ||
users_Rhand = 2, | ||
objects = 3, | ||
physicsObject = 4, | ||
main_Player = 5, | ||
physicsEnd = 8, | ||
Line = 10, | ||
LineEnd = 11, | ||
LineDelete = 12, | ||
LineRender = 13, | ||
LineNotRender = 14, | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Komodo/Assets/Packages/KomodoCore/Runtime/Scripts/RuntimeSession/EntityType.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.