Skip to content

Commit d675936

Browse files
committed
Fix items not showing on the virtual camera
fixes #2
1 parent bc94ea7 commit d675936

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

src/Trashy/ItemSpawner.cs

+8-6
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,24 @@ private IEnumerator SpawnTrash(Vector3 position, Vector3 headPosition, TriggerCo
5454
{
5555
var viewport = ModelLoader.Live2DCamera.WorldToViewportPoint(headPosition);
5656
var spawnAdjustmentRange = new Vector3(-100, 100);
57-
var layer = 9; // 9=UI LAYER, 8=live2d layer
5857

59-
// Adjust spawn position and layer depending if the model is on the far left or right of the screen
58+
// Note: The virtual camera feature only renders the live2d layer
59+
var layer = 8; // 9=UI LAYER, 8=live2d layer
60+
61+
// Adjust spawn position depending if the model is on the far left or right of the screen
6062
// example: Items should only spawn on the left if the model is on the far right
6163

6264
if (viewport.x >= 0.8f)
6365
spawnAdjustmentRange = new Vector3(-100, 0);
6466

65-
if (viewport.x >= 0.9f)
66-
layer = 8;
67+
// if (viewport.x >= 0.9f)
68+
// layer = 8;
6769

6870
if (viewport.x <= 0.2f)
6971
spawnAdjustmentRange = new Vector2(0, 100);
7072

71-
if (viewport.x <= 0.1f)
72-
layer = 8;
73+
// if (viewport.x <= 0.1f)
74+
// layer = 8;
7375

7476
for (var i = 0; i < trigger.ItemCount; ++i)
7577
{

src/Trashy/Trashy.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55

6-
<Version>0.3.2</Version>
7-
<AssemblyVersion>0.3.2</AssemblyVersion>
6+
<Version>0.3.3</Version>
7+
<AssemblyVersion>0.3.3</AssemblyVersion>
88

99
<VTubeStudioPath></VTubeStudioPath>
1010
</PropertyGroup>

src/Trashy/TrashyPlugin.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Trashy
1414
[BepInPlugin("TrashyPlugin", "Throw trash at the VTuber", Version)]
1515
public class TrashyPlugin : BaseUnityPlugin
1616
{
17-
public const string Version = "0.3.2";
17+
public const string Version = "0.3.3";
1818

1919
public static AssetBundle Bundle;
2020
public static VTubeStudioModelLoader ModelLoader;

0 commit comments

Comments
 (0)