Hello. How can I fix this?
void KinnijäämiseParandus()
{
if (rb.velocity.z <= 13)
{
tf.position = tf.position + (0, 0, 1); // error line
}
}
I get error CS0019: Operator '+' cannot be applied to operands of type 'Vector3' and '(int, int, int)'.
↧