/
GeekNerd
/
ServerModelingProject
Обзор
Документация
Войти
/
GeekNerd
/
ServerModelingProject
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Assets/Scripts/DataClasses/Algorithm/PlacementZone.cs
18 строк
445 B
Gorney-Alex
Init
30 май 2026, 19:05
30 май 2026, 19:05
3cdcc49
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using UnityEngine; namespace DataClasses.Algorithm { [Serializable] public class PlacementZone { public int ZoneId; public Rect Bounds; public int Capacity; public List<Vector2> CandidatePositions = new(); // TZ: direction of cold air for this zone (normalized) public Vector2 ColdAirDirection = Vector2.up; } }