Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Version on desktop. Next commit will be merged with Mo code
  • Loading branch information
ssridhar committed Jan 18, 2017
1 parent 1e8f880 commit b83cd74
Show file tree
Hide file tree
Showing 19 changed files with 196 additions and 6 deletions.
Binary file modified WoodenMan/.vs/WoodenMan/v14/.suo
Binary file not shown.
9 changes: 5 additions & 4 deletions WoodenMan/Assets/Scripts/loadKFWSkeleton.cs
Expand Up @@ -30,12 +30,12 @@ void Start()
//Screen.SetResolution(1920, 1080, true);
Application.runInBackground = true;

m_isVRMode = true;
m_isMoveFloor = false;
m_isVNECTMode = false;
m_isVRMode = false;
m_isMoveFloor = true;
m_isVNECTMode = true;

if (m_isVNECTMode)
m_SequenceName = "DCorridor_VNECT";
m_SequenceName = "Football_2";
else
m_SequenceName = "DCorridor_KFW";
FileStream fs = new FileStream(UnityEngine.Application.streamingAssetsPath + "/" + m_SequenceName + ".txt", FileMode.Open, FileAccess.Read, FileShare.Read);
Expand Down Expand Up @@ -183,6 +183,7 @@ void Start()
void Update()
{
string Line = m_3DPoseFileStream.ReadLine();
Debug.Log(Line);
m_isValid = false;

if (Line.Length == 0)
Expand Down
189 changes: 189 additions & 0 deletions WoodenMan/Assets/StreamingAssets/Football_2.txt

Large diffs are not rendered by default.

Binary file modified WoodenMan/Library/CurrentLayout.dwlt
Binary file not shown.
Binary file modified WoodenMan/Library/ScriptAssemblies/Assembly-CSharp.dll
Binary file not shown.
Binary file modified WoodenMan/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb
Binary file not shown.
Binary file modified WoodenMan/Library/UnityAssemblies/UnityEditor.Advertisements.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified WoodenMan/Library/UnityAssemblies/UnityEditor.Graphs.dll
Binary file not shown.
Binary file modified WoodenMan/Library/UnityAssemblies/UnityEditor.Networking.dll
Binary file not shown.
Binary file modified WoodenMan/Library/UnityAssemblies/UnityEditor.TreeEditor.dll
Binary file not shown.
Binary file modified WoodenMan/Library/UnityAssemblies/UnityEditor.UI.dll
Binary file not shown.
Binary file not shown.
Binary file modified WoodenMan/Library/assetDatabase3
Binary file not shown.
Binary file modified WoodenMan/Library/metadata/83/83a46bd16b64c9c4386ae0f1b3812dbf
Binary file not shown.
2 changes: 0 additions & 2 deletions WoodenMan/Library/shadercompiler-UnityShaderCompiler.exe0.log
@@ -1,4 +1,2 @@
Base path: C:/Program Files/Unity/Editor/Data
Cmd: getPlatforms

Quitting shader compiler process
1 change: 1 addition & 0 deletions WoodenMan/WoodenMan.CSharp.Editor.csproj
Expand Up @@ -169,6 +169,7 @@
<None Include="Assets\StreamingAssets\DCorridor_KFW.txt" />
<None Include="Assets\StreamingAssets\DCorridor_VNECT.txt" />
<None Include="Assets\StreamingAssets\DRotunda.txt" />
<None Include="Assets\StreamingAssets\Football_2.txt" />
<None Include="Assets\StreamingAssets\KFWFormat.txt" />
<None Include="Assets\StreamingAssets\VNECTFormat.txt" />
<None Include="Assets\websocket-sharp for Unity\Plugins\websocket-sharp.xml" />
Expand Down
1 change: 1 addition & 0 deletions WoodenMan/WoodenMan.CSharp.csproj
Expand Up @@ -200,6 +200,7 @@
<None Include="Assets\StreamingAssets\DCorridor_KFW.txt" />
<None Include="Assets\StreamingAssets\DCorridor_VNECT.txt" />
<None Include="Assets\StreamingAssets\DRotunda.txt" />
<None Include="Assets\StreamingAssets\Football_2.txt" />
<None Include="Assets\StreamingAssets\KFWFormat.txt" />
<None Include="Assets\StreamingAssets\VNECTFormat.txt" />
<None Include="Assets\websocket-sharp for Unity\Plugins\websocket-sharp.xml" />
Expand Down

0 comments on commit b83cd74

Please sign in to comment.