Skip to content
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

Garrote #5

Draft
wants to merge 15 commits into
base: master
Choose a base branch
from
Draft

Garrote #5

wants to merge 15 commits into from

Conversation

Shegare
Copy link
Contributor

@Shegare Shegare commented Dec 9, 2024

О PR

Продолжение Space-Stories/space-station-14#275
Было одобрено в дискорде и в Space-Stories/space-station-14#259

Технические детали

Что я добавил:

  • Добавлены спрайты.
  • Анхаркод урона и типа урона.
  • Для использования проверяет расстояние от цели до пользователя (для удавки должно быть очень маленьким).
  • Для использования проверяет, совпадает ли направление взгляда пользователя с направлением взгляда цели.

Медиа

2024-12-10.00-42-47.mp4

Aseprite_jq7cgF5wQs

  • Я добавил к этому PR скриншоты/видео, демонстрирующие его изменения в игре, или этот PR не требует демонстрации в игре

Changelog

🆑 pheenty и Shegare

  • add: В аплинк добавлена удавка, позволяющая агентам Синдиката и Ядерным Оперативникам тихо устранять одиночные цели.

Comment on lines +146 to +166
/// <remarks>
/// Does not check for the presence of TransformComponent.
/// </remarks>
private Direction GetEntityDirection(TransformComponent entityTransform)
{
double entityLocalRotation;

if (entityTransform.LocalRotation.Degrees < 0)
entityLocalRotation = 360 - Math.Abs(entityTransform.LocalRotation.Degrees);
else
entityLocalRotation = entityTransform.LocalRotation.Degrees;

if(entityLocalRotation > 43.5d && entityLocalRotation < 136.5d)
return Direction.East;
else if(entityLocalRotation >= 136.5d && entityLocalRotation <= 223.5d)
return Direction.North;
else if(entityLocalRotation > 223.5d && entityLocalRotation < 316.5d)
return Direction.West;
else
return Direction.South;
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мб захочешь предложить реализацию получше (но если так, то пж скажи в каком классе искать метод...)

@Shegare Shegare marked this pull request as draft December 17, 2024 15:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants