Difference between revisions of "FF7/Field/Script/Opcodes/66 SCR2DC"

From Final Fantasy Inside
< FF7‎ | Field‎ | Script‎ | Opcodes
Jump to navigation Jump to search
my_wiki>Synergy Blades
 
my_wiki>Synergy Blades
Line 25: Line 25:
 
==== Description ====
 
==== Description ====
  
Scrolls the current view to the coordinates found in the arguments, or the values found at the addresses if memory banks are specified in the first two arguments. The scroll is smooth, that is, it begins slowly, speeds up and reaches its peak at the middle of the scroll, then slows down towards the end. A mixture of memory-retrieved values and literal values can be used.
+
Similar to [[FF7/Field/Script/Opcodes/64 SCR2D|SCR2D]], except the scroll is not instantaneous and is performed smoothly, with a slower start and ending, with speed peaking in the center of the scroll. The overall speed can be set with ''S''.

Revision as of 01:31, 15 September 2006

  • Opcode: 0x66
  • Short name: SCR2DC
  • Long name: Scroll to Coordinates (Smooth)

Memory layout

0x66 B1 / B2 0 / B3 X Y S

Arguments

  • const Bit[4] B1: Source bank 1, or zero if X is set as a constant value.
  • const Bit[4] B2: Source bank 2, or zero if Y is set as a constant value.
  • const Bit[4] 0: Zero.
  • const Bit[4] B4: Source bank 3, or zero if S is set as a constant value.
  • const Short X: X-coordinate to scroll to.
  • const Short Y: Y-coordinate to scroll to.
  • const UShort S: Speed to scroll; higher values scroll more slowly.

Description

Similar to SCR2D, except the scroll is not instantaneous and is performed smoothly, with a slower start and ending, with speed peaking in the center of the scroll. The overall speed can be set with S.