EPIC
EPIC copied to clipboard
Entity Position Interpolation Code
Results
1
EPIC issues
Sort by
recently updated
recently updated
newest added
https://github.com/jwatte/EPIC/blob/master/Extrapolator.cpp#L126 `oVel` is an argument and passed as pointer to `ReadPosition()`, so `sizeof(oVel)` returns the size of a pointer. **Fix** Replace `sizeof(oVel)` with `sizeof(Type) * Count` ~~~cpp memset(oVel, 0, sizeof(Type)...