Search Issue Tracker
Fixed in 2019.3.X
Votes
3
Found in
2017.2.0f3
Issue ID
959093
Regression
No
Vector2Int is missing negation, division and multiplication by int operators
Steps to reproduce:
1. Use one of these in a C# script:
var vector = 2 * Vector2Int.one;
var vector = -Vector2Int.right;
var vector = new Vector2Int(1, 1) / 1;
Actual result: all of these lines produce compile errors because Vector2Int is missing negation, division and multiplication by int operators
Reproducible with: 2017.2.0f3, 2017.3.0b5
Comments (1)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Sprite Importer Checkbox Label Truncated in UI (2D Template)
- Light theme icon is missing for Volume Component in the Inspector window
- Volume Profile effects are still showing and active in Game View when the Volume Profile is reset
- Shader Graph Tab Lacks Right Margin for Long Titles
- 2DLight component only renders when ShadowCaster2D components are within range in WebGL builds
ArConstructor
Jan 06, 2018 21:34
This also affects Vector3Int.
Vector2, Vector3, Vector4 have these operators:
vector +(vector a, vector b)
vector /(vector a, float d)
bool ==(vector lhs, vector rhs)
bool !=(vector lhs, vector rhs)
vector *(vector a, float d)
vector *(float d, vector a)
vector -(vector a, vector b)
vector -(vector a)
But Vector2Int, Vector3Int have only these operators:
vector +(vector a, vector b)
bool ==(vector lhs, vector rhs)
bool !=(vector lhs, vector rhs)
vector *(vector a, vector b)
vector *(vector a, int b)
vector -(vector a, vector b)