stickmastererik / vive-report

Access the Oculus Report Menu on SteamVR-based systems
GNU General Public License v3.0
1 stars 0 forks source link

Map does not respawn after using report menu in a lobby #2

Open stickmastererik opened 1 month ago

stickmastererik commented 1 month ago

See ISSUES.md

stickmastererik commented 3 weeks ago

Important Issue Update

A new fix to this problem is being experimented with:

Manually refresh map (scene) based on the nearest computer.

This code structure will help us detect it:

string gamemode = PhotonNetworkController.Instance.currentJoinTrigger.networkZone;

if (gamemode == "forest")
{
    // We are in forest
}
if (gamemode == "city")
{
    // We are in city
}
if (gamemode == "canyons")
{
    // We are in canyons
}
if (gamemode == "mountains")
{
    // We are in mountains
}
if (gamemode == "beach")
{
    // We are in beach
}
if (gamemode == "sky")
{
    // We are in clouds
}
if (gamemode == "basement")
{
    // We are in basement
}
if (gamemode == "caves")
{
    // We are in caves
}
stickmastererik commented 3 weeks ago

Documentation for this experimental fix was submitted in #4

stickmastererik commented 3 weeks ago

When I fix my Vive, I will try and test for some map loading functions in Gorilla Tag. Cable arrives today

stickmastererik commented 3 weeks ago

Solution may be #5