Commit c9035db3 authored by Filippo Beck Peccoz's avatar Filippo Beck Peccoz
Browse files

Build 0.0.1.5, with changes to assembly scripts as usual to make it work...

Build 0.0.1.5, with changes to assembly scripts as usual to make it work (needs to be reverted in order to have it functioning in the editor
Showing with 138 additions and 165 deletions
+138 -165
......@@ -702,7 +702,7 @@ namespace Michsky.DreamOS
for (int i = 0; i < audioTracks.Length; i++)
{
var track = audioTracks[i];
string eventPath = track.fmodEvent.IsNull ? "NULL" : track.fmodEvent.Path;
string eventPath = track.fmodEvent.IsNull ? "NULL" : track.fmodEvent.ToString();
DebugLog($"Inspector track {i}: filename='{track.filename}', FMOD event={eventPath}, isCorrect={track.isCorrectTrack}");
}
......@@ -717,7 +717,7 @@ namespace Michsky.DreamOS
for (int i = 0; i < audioTracks.Length; i++)
{
var track = audioTracks[i];
string eventPath = track.fmodEvent.IsNull ? "NULL" : track.fmodEvent.Path;
string eventPath = track.fmodEvent.IsNull ? "NULL" : track.fmodEvent.ToString();
DebugLog($"External track {i}: filename='{track.filename}', FMOD event={eventPath}, isCorrect={track.isCorrectTrack}");
}
......@@ -1513,7 +1513,7 @@ namespace Michsky.DreamOS
for (int i = 0; i < audioTracks.Length; i++)
{
var track = audioTracks[i];
string eventPath = track.fmodEvent.IsNull ? "NULL" : track.fmodEvent.Path;
string eventPath = track.fmodEvent.IsNull ? "NULL" : track.fmodEvent.ToString();
string hasWaveform = track.waveformImage != null ? "YES" : "NO";
Debug.Log($"Track {i}: name='{track.filename}', event={eventPath}, waveform={hasWaveform}, isCorrect={track.isCorrectTrack}");
}
......@@ -1536,7 +1536,7 @@ namespace Michsky.DreamOS
if (!trackInfo.fmodEvent.IsNull)
{
fmodEventPath = trackInfo.fmodEvent.Path;
fmodEventPath = trackInfo.fmodEvent.ToString();
}
else
{
......@@ -4054,7 +4054,7 @@ namespace Michsky.DreamOS
if (trackInfo.HasValue && !trackInfo.Value.fmodEvent.IsNull)
{
FMOD.Studio.EventDescription eventDescription = RuntimeManager.GetEventDescription(trackInfo.Value.fmodEvent.Path);
FMOD.Studio.EventDescription eventDescription = RuntimeManager.GetEventDescription(trackInfo.Value.fmodEvent.ToString());
if (eventDescription.isValid())
{
int lengthInMs;
......@@ -4546,7 +4546,7 @@ namespace Michsky.DreamOS
// Dump the input tracks to see exactly what we received
for (int i = 0; i < tracks.Length; i++)
{
string eventPath = tracks[i].fmodEvent.IsNull ? "NULL" : tracks[i].fmodEvent.Path;
string eventPath = tracks[i].fmodEvent.IsNull ? "NULL" : tracks[i].fmodEvent.ToString();
string hasWaveform = tracks[i].waveformImage != null ? "YES" : "NO";
Debug.Log($"RECEIVED Track {i}: name='{tracks[i].filename}', event={eventPath}, waveform={hasWaveform}, isCorrect={tracks[i].isCorrectTrack}");
}
......@@ -4587,7 +4587,7 @@ namespace Michsky.DreamOS
}
// Log the track we just copied
string eventPath = audioTracks[i].fmodEvent.IsNull ? "NULL" : audioTracks[i].fmodEvent.Path;
string eventPath = audioTracks[i].fmodEvent.IsNull ? "NULL" : audioTracks[i].fmodEvent.ToString();
Debug.Log($"COPIED Track {i}: name='{audioTracks[i].filename}', event={eventPath}, isCorrect={audioTracks[i].isCorrectTrack}");
}
}
......
......@@ -30,7 +30,7 @@ PluginImporter:
settings:
CPU: x86_64
OSXUniversal:
enabled: 1
enabled: 0
settings:
CPU: AnyCPU
Win:
......
This diff is collapsed.
......@@ -185,7 +185,7 @@ public class DesktopAssemblyProject : MonoBehaviour
// Output details of the tracks we created
for (int i = 0; i < audioTracks.Length; i++)
{
string eventPath = audioTracks[i].fmodEvent.IsNull ? "NULL" : audioTracks[i].fmodEvent.Path;
string eventPath = audioTracks[i].fmodEvent.IsNull ? "NULL" : audioTracks[i].fmodEvent.ToString();
Debug.Log($"Default track {i}: filename='{audioTracks[i].filename}', event={eventPath}, isCorrect={audioTracks[i].isCorrectTrack}");
}
}
......@@ -310,7 +310,7 @@ public class DesktopAssemblyProject : MonoBehaviour
for (int i = 0; i < audioTracks.Length; i++)
{
AudioTrackInfo info = audioTracks[i];
string eventPath = info.fmodEvent.IsNull ? "NULL" : info.fmodEvent.Path;
string eventPath = info.fmodEvent.IsNull ? "NULL" : info.fmodEvent.ToString();
string hasWaveform = info.waveformImage != null ? "YES" : "NO";
Debug.Log($"Track {i} BEFORE SENDING: name='{info.filename}', event={eventPath}, waveform={hasWaveform}, isCorrect={info.isCorrectTrack}");
}
......
......@@ -142,7 +142,7 @@ PlayerSettings:
loadStoreDebugModeEnabled: 0
visionOSBundleVersion: 1.0
tvOSBundleVersion: 1.0
bundleVersion: 0.0.1.4
bundleVersion: 0.0.1.5
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment