Cannot implicity convert type 'void' to 'Stride.Core.Mathematics.Vector3' #1374
Answered
by
Eideren
JustAnotherGameDevWasTaken
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
Eideren
Mar 23, 2022
Replies: 1 comment
-
This is not an issue specific to stride, did you take a look on google, there are loads of resources online for it. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JustAnotherGameDevWasTaken
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is not an issue specific to stride, did you take a look on google, there are loads of resources online for it.
That function returns
void
, aka nothing. You're trying to assignnothing
totest
, you can't assignnothing
tosomething
.Rotate rotates the vector you pass in since it's passed as
ref
.