Is it possible to have a single header with a single serialized field that applies to multiple variables of certain range?
Something like this, but without having to declare 3 separate serialized fields and 3 separate variables in 3 lines:
![alt text][1]
The code I have right now:
[Header("Camera Settings")]
[SerializeField, Range(1f, 20f)]
float xAxis = 5f;
[SerializeField, Range(1f, 20f)]
float yAxis = 5f;
[SerializeField, Range(1f, 20f)]
float zAxis = 5f;