Geoguessr Unity Script

For a full list of features included in this script, see this document https://docs.google.com/document/d/18nLXSQQLOzl4WpUgZkM-mxhhQLY6P3FKonQGp-H0fqI/edit?usp=sharing

< Geoguessr Unity Scriptについてのフィードバック

レート:可 - スクリプトは動作するがバグがある

§
投稿日: 2023/01/09

No icons are showing up anymore in the dropdown meny of the script. I am using the 7.0.1 version of the unity script

§
投稿日: 2023/01/10

This is also happening with me. Today I noticed it on a twitch streamer's stream. Hopefully jupa can fix this.

§
投稿日: 2023/01/12

Same thing is happening to me.

§
投稿日: 2023/08/10

It looks like this bit of the code needs to include element.style.backgroundSize="contain";

for (let element of document.getElementsByClassName("menu-btn"))
{
element.style.backgroundImage = dict[element.id][0];
element.style.backgroundColor = dict[element.id][1];
element.style.backgroundRepeat = "no-repeat";
element.style.backgroundOrigin = "content-box";
element.style.visibility = "";
}

§
投稿日: 2023/08/10

- in Extensions; under Tampermonkey go to dashboard; click on the edit icon for Unity Geoguessr; around line 1200 add the backgroundSize setting; then save.


for (let element of document.getElementsByClassName("menu-btn"))
{
element.style.backgroundImage = dict[element.id][0];
element.style.backgroundColor = dict[element.id][1];
element.style.backgroundRepeat = "no-repeat";
element.style.backgroundOrigin = "content-box";
element.style.backgroundSize = "contain";
element.style.visibility = "";
}

返信を投稿

返信を投稿するにはログインしてください。