Skip to content

Commit d167425

Browse files
committed
Going 64-Bit
1 parent 56b72db commit d167425

File tree

17 files changed

+30
-62
lines changed

17 files changed

+30
-62
lines changed

Assets/Resources/OVRBuildConfig.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ MonoBehaviour:
1212
m_Script: {fileID: 11500000, guid: 20553fac56ec59645857c0732b787431, type: 3}
1313
m_Name: OVRBuildConfig
1414
m_EditorClassIdentifier:
15-
androidSDKPath:
15+
androidSDKPath: C:\Program Files\Unity\Hub\Editor\2019.3.0f6\Editor\Data\PlaybackEngines\AndroidPlayer\SDK
1616
gradlePath:
1717
jdkPath:

Assets/Scripts/Delay/delaySignalGenerator.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ public enum Param : int
1717
P_N
1818
};
1919

20-
public const float MIN_TIME = 0.015f; //0.015 seconds = 15ms
21-
public const float MAX_TIME = 3.0f; //3 seconds
20+
public const float MIN_TIME = 0.050f; // * 1000ms
21+
public const float MAX_TIME = 5.0f; // * 1000 ms
2222
public const float MIN_FEEDBACK = 0;
23-
public const float MAX_FEEDBACK = 0.95f;
23+
public const float MAX_FEEDBACK = 1f;
2424
public const float MIN_WET = -96; //dB
2525
public const float MAX_WET = 0; //dB
2626
public const float MIN_DRY = -96; //dB
@@ -49,7 +49,7 @@ public void SetParam(float value, int param)
4949
switch(param)
5050
{
5151
case (int)Param.P_TIME:
52-
p[param] = Utils.map(value, 0, 1, MIN_TIME * AudioSettings.outputSampleRate, MAX_TIME * AudioSettings.outputSampleRate);
52+
p[param] = Utils.map(Mathf.Pow(value, 3), 0, 1, MIN_TIME * AudioSettings.outputSampleRate, MAX_TIME * AudioSettings.outputSampleRate);
5353
break;
5454
case (int)Param.P_FEEDBACK:
5555
p[param] = Utils.map(value, 0, 1, MIN_FEEDBACK, MAX_FEEDBACK);
-22 Bytes
Binary file not shown.

Assets/SoundStageNative/SoundStageNative.VC.VC.opendb.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.
-7.51 MB
Binary file not shown.

Assets/SoundStageNative/SoundStageNative.VC.db.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

Assets/SoundStageNative/SoundStageNative/Application.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
APP_OPTIM := release
2-
APP_ABI := armeabi-v7a
2+
APP_ABI := arm64-v8a
33
APP_PLATFORM := android-23
44
APP_BUILD_SCRIPT := Android.mk
55
# IMPORTANT: c++_static will only work if we have one and only one .so in the whole application.

Assets/SoundStageNative/SoundStageNative/armv7.meta renamed to Assets/SoundStageNative/SoundStageNative/arm64.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/SoundStageNative/SoundStageNative/armv7/Release.meta renamed to Assets/SoundStageNative/SoundStageNative/arm64/Release.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

0 commit comments

Comments
 (0)