👀 currentAvatarTags

This commit is contained in:
Natsumi
2024-05-14 22:03:56 +12:00
parent e3dcf885fc
commit a18c6f06c4
4 changed files with 91 additions and 21 deletions

View File

@@ -25,15 +25,12 @@ namespace VRCX
}
var height = 110f;
if (content.Length > 100) {
height += 90f;
}
if (content.Length > 200) {
height += 75f;
}
if (content.Length > 300) {
height += 155f;
}
if (content.Length > 300)
height = 250f;
else if (content.Length > 200)
height = 200f;
else if (content.Length > 100)
height = 150f;
var msg = new XSOMessage
{