This website requires JavaScript.
Explore
Help
Register
Sign In
shaun_chaky
/
eastern-flames
Watch
1
Star
0
Fork
You've already forked eastern-flames
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
6d9f6a3e28
eastern-flames
/
eastern flames
/
scripts
/
c_tiledist
/
c_tiledist.gml
3 lines
81 B
Plaintext
Raw
Normal View
History
Unescape
Escape
skill solution
2022-08-19 01:05:37 +00:00
function c_tiledist(x1, y1, x2, y2) {
enemy ai types
2022-08-19 02:26:10 +00:00
return new vec2(abs(x1-x2), abs(y1-y2));
skill solution
2022-08-19 01:05:37 +00:00
}