-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Colorful ghosts #734
Colorful ghosts #734
Conversation
Content.Client/Ghost/GhostSystem.cs
Outdated
// при прямом указаний цвета в sprite.LayerSetColor цвет назначается, если это делать через рандомизацию (даже если цвет успешно сгенерирован и это видно в дебагере)... | ||
// ...тогда стандартный гост, увы | ||
var _random = new Random(); | ||
var color = new Color(_random.Next(1, 255), _random.Next(1, 255), _random.Next(1, 255)); | ||
if (TryComp<SpriteComponent>(uid, out var sprite)) | ||
sprite.LayerSetColor(0, component.color); | ||
sprite.LayerSetColor(0, color); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
пометку сделай, что изменение наше
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
@Werzet забыл наверное про беднягу |
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
Описание PR
По просьбе адуча восстановил по памяти то, что я делал ещё перед НГ.
Если кратко о проблеме:
Когда цвет назначается напрямую в sprite.LayerSetColor(), то цвет назначается. Если это сделать через предварительно сгенерированный цвет и передать его в качестве аргумента, то получаем стандартный цвет госта по итогу.
Возможно, решается через генерацию цвета на сервере и его передачу на GhostComponent color в конструкторе
Медиа
Проверки
Изменения
🆑 Lazzi, Wer