Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Eight Direction & More Frames
#42
You do not use a separate character when using this system.  All character poses, both diagonal and norm, are held within the same characterset.  This is to appease your typical paperdoll system such as Visual Equipment.  You may not be aware, but paperdoll equip-overlay systems get confused by systems like ParaDog's as they switch from an actual characterset name to another.

Now, the normal 4-pose system as configured in the script and demo is thus:
Code:
# Charset General Configuration
 CHARSET_8DIR_CONTROL  = false                   # If true, 8 dir control
 CHARSET_8DIR_ISO      = 0                       # If set to 0, no iso movement
                                                 # Values of 1 or 2 set differ-
                                                 # ent iso movement rotations
# Charset Poses  
 CHARSET_TOTAL_POSES   = 28                      # Total number of poses
 CHARSET_POSES         = 4                       # Standard number of poses
 # Supplemental poses - - - - - - - - - - - - - - - - - - - - - - - - - - -
   CHARSET_POSES_D     = 5                       # First pose/dir for dashing
   CHARSET_POSES_S     = 1                       # First pose/dir for sneaking
   CHARSET_POSES_J     = 5                       # First pose/dir for jumping
   CHARSET_POSES_A     = 9                       # First pose/dir for attacking
   CHARSET_POSES_M     = 13                      # First pose/dir for missiles
   CHARSET_POSES_C     = 21                      # First pose/dir for skill craft
   CHARSET_POSES_I     = 17                      # First pose/dir for missiles
   CHARSET_POSES_W     = 25                      # First pose/dir for wait/idle

That's fine for 4-poses per action, but you are going for 8 directions.  So you need 8 directions for each action, and must divide the character's spriteset even more.

Code:
# Character Basic Configuration
#
# Charset General Configuration
 CHARSET_8DIR_CONTROL  = true                    # If true, 8 dir control
 CHARSET_8DIR_ISO      = 0                       # If set to 0, no iso movement
                                                 # Values of 1 or 2 set differ-
                                                 # ent iso movement rotations
# Charset Poses  
 CHARSET_TOTAL_POSES   = 56                      # Total number of poses
 CHARSET_POSES         = 8                       # Standard number of poses
 # Supplemental poses - - - - - - - - - - - - - - - - - - - - - - - - - - -
   CHARSET_POSES_D     = 9                       # First pose/dir for dashing
   CHARSET_POSES_S     = 1                       # First pose/dir for sneaking
   CHARSET_POSES_J     = 9                       # First pose/dir for jumping
   CHARSET_POSES_A     = 17                      # First pose/dir for attacking
   CHARSET_POSES_M     = 25                      # First pose/dir for missiles
   CHARSET_POSES_C     = 41                      # First pose/dir for skill craft
   CHARSET_POSES_I     = 33                      # First pose/dir for missiles
   CHARSET_POSES_W     = 49                      # First pose/dir for wait/idle

As you see, the number of total character poses increased from 28 to 56, doubled up as you are now going with 8 poses per action instead of 4.  It's not just the 'CHARSET_POSES' value, though that needs to be set as well.  And all the other poses now adjusted to match.

To work with this, the charset would work with a charset with the following facing directions:
Facing:  down/left.......(aka button 1 direction)
Facing:  down.............(aka button 2 direction)
Facing:  down/right ....(aka button 3 direction)
Facing:   left................(aka button 4 direction)
Facing:  right...............(aka button 6 direction)
Facing:  up/left............(aka button 7 direction)
Facing:  up .................(aka button 8 direction)
Facing:  up/right ....... (aka button 9 direction)
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }


Messages In This Thread
Eight Direction & More Frames - by DerVVulfman - 03-05-2008, 06:49 AM
RE: Eight Direction & More Frames - by KDC - 11-07-2011, 11:35 PM
RE: Eight Direction & More Frames - by Kristovski - 11-10-2011, 11:42 PM
RE: Eight Direction & More Frames - by NightOwl - 11-10-2011, 11:50 PM
RE: Eight Direction & More Frames - by JayRay - 08-17-2012, 08:36 AM
RE: Eight Direction & More Frames - by AeroLowe - 09-16-2012, 01:45 AM
RE: Eight Direction & More Frames - by AeroLowe - 09-17-2012, 09:39 PM
RE: Eight Direction & More Frames - by AeroLowe - 09-17-2012, 10:31 PM
RE: Eight Direction & More Frames - by AeroLowe - 09-18-2012, 11:38 PM
RE: Eight Direction & More Frames - by lowcku - 03-16-2013, 12:31 AM
RE: Eight Direction & More Frames - by lowcku - 03-16-2013, 11:30 PM
RE: Eight Direction & More Frames - by lowcku - 03-17-2013, 04:20 AM
RE: Eight Direction & More Frames - by Zexion - 04-30-2013, 02:43 AM
RE: Eight Direction & More Frames - by BlackCatSG - 04-30-2013, 03:02 PM
RE: Eight Direction & More Frames - by BlackCatSG - 05-01-2013, 09:25 PM
RE: Eight Direction & More Frames - by DrHouse93 - 06-14-2016, 11:51 AM
RE: Eight Direction & More Frames - by DrHouse93 - 06-14-2016, 08:54 PM
RE: Eight Direction & More Frames - by LunarBerry - 06-28-2016, 08:07 PM
RE: Eight Direction & More Frames - by DerVVulfman - 06-29-2016, 03:32 AM
RE: Eight Direction & More Frames - by LunarBerry - 06-29-2016, 05:06 AM
Eight Direction & More Frames - by DerVVulfman - 03-11-2010, 04:57 AM
Eight Direction & More Frames - by Ace - 03-11-2010, 02:01 PM
Eight Direction & More Frames - by DerVVulfman - 03-12-2010, 04:22 AM
Eight Direction & More Frames - by Villain - 03-12-2010, 06:57 AM
Eight Direction & More Frames - by DerVVulfman - 03-13-2010, 01:24 AM
RE: Eight Direction & More Frames - by AeroLowe - 09-15-2012, 12:51 AM
Eight Direction & More Frames - by Villain - 03-13-2010, 07:22 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Victor Engine - Multi Frames Victor Sant 0 5,767 12-22-2011, 01:14 AM
Last Post: Victor Sant
   1-Direction Movement woratana 0 4,565 01-22-2009, 01:11 PM
Last Post: woratana
   Scheduler - When you want something to happen after an amount of frames Zeriab 0 4,505 03-08-2008, 06:32 AM
Last Post: Zeriab
   Extra Movement Frames Stone 0 5,180 03-08-2008, 05:02 AM
Last Post: Stone
   Eight Direction Characterset Edit ParaDog 0 4,512 03-04-2008, 04:42 AM
Last Post: ParaDog



Users browsing this thread: