Skip to content

Commit

Permalink
updated fighting game sample: added continuous collision detection
Browse files Browse the repository at this point in the history
  • Loading branch information
turanszkij committed Apr 28, 2019
1 parent fabc169 commit f8d5217
Show file tree
Hide file tree
Showing 2 changed files with 197 additions and 133 deletions.
2 changes: 1 addition & 1 deletion WickedEngine/wiLua_Globals.h
Expand Up @@ -182,7 +182,7 @@ function math.clamp(x,min,max)
end
-- clamp number between 0,1
function math.saturate(x)
return clamp(x,0,1)
return math.clamp(x,0,1)
end
-- round number to nearest integer
function math.round(x)
Expand Down

0 comments on commit f8d5217

Please sign in to comment.