mirror of
https://github.com/notwa/mm
synced 2024-11-05 00:19:02 -08:00
movement test "works" now on oot
This commit is contained in:
parent
907e5dcd93
commit
0149f3705b
2 changed files with 7 additions and 4 deletions
|
@ -31,7 +31,7 @@ function Actor(addr)
|
||||||
--ground_y = AA(0x88, 'f'),
|
--ground_y = AA(0x88, 'f'),
|
||||||
damage_table = AA(0x98, 4),
|
damage_table = AA(0x98, 4),
|
||||||
hp = AA(0xAF, 1),
|
hp = AA(0xAF, 1),
|
||||||
--angle = AA(0xBA, 2),
|
angle = AA(0xB6, 2),
|
||||||
prev = AA(0x120, 4),
|
prev = AA(0x120, 4),
|
||||||
next = AA(0x124, 4),
|
next = AA(0x124, 4),
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
-- movement speed testing in Majora's Mask
|
-- movement speed testing
|
||||||
-- go to the fairy's fountain in clock town as human link and run this script.
|
-- for Majora's Mask:
|
||||||
|
-- go to the fairy's fountain in clock town as human link and run this script.
|
||||||
|
-- for Ocarina of Time:
|
||||||
|
-- go to the Temple of Time as a child and run this script.
|
||||||
|
|
||||||
require "addrs.init"
|
require "addrs.init"
|
||||||
|
|
||||||
|
@ -58,7 +61,7 @@ local tests = {
|
||||||
|
|
||||||
local link = addrs.link_actor
|
local link = addrs.link_actor
|
||||||
|
|
||||||
local pos = {2400, 20, 375}
|
local pos = mm and {2400, 20, 375} or {-200, -40, 2330}
|
||||||
local angle = 180
|
local angle = 180
|
||||||
|
|
||||||
local fn = 'lua movement test'
|
local fn = 'lua movement test'
|
||||||
|
|
Loading…
Reference in a new issue