It is currently Sat Nov 21, 2009 12:29 am


Forum rules


IMPORTANT

This Forum is for Flash related questions ONLY! Do not ask questions about spriting, Game Maker, Photoshop, or anything else not related to Flash.



Post new topic Reply to topic  [ 2 posts ] 
[Request] Having health follow stage 
Author Message
User avatar

Joined: Tue Aug 12, 2008 3:07 pm
Posts: 29
Smash Bros. Brawl Friend Code: 4511-0269-7853 jag
Post [Request] Having health follow stage
i know how to make the health but I'm not sure how to have the health follow the stage when i have the character move
this is the code im using for the stage to follow the character
Code:
with (boxCam) {
   onLoad = function () {
      CamX = _x;
      CamY = _y;
   };
   onEnterFrame = function () {
      _x = _root.char._x;
      _y = _root.char._y;
      CamX = CamX+(_x-CamX)/4;
      _root._x = Stage.width/2-CamX;
      CamY = CamY+(_y-CamY)/4;
      _root._y = Stage.height/2-CamY;
   };
}

_________________
Image
Click here to level up my card!


Tue Sep 29, 2009 6:47 pm
Profile
User avatar

Joined: Tue Oct 27, 2009 12:00 pm
Posts: 6
Gender: Male
Post Re: [Request]having health follow stage
jgillotti1352 wrote:
i know how to make the health but I'm not sure how to have the health follow the stage when i have the character move
this is the code im using for the stage to follow the character
Code:
with (boxCam) {
   onLoad = function () {
      CamX = _x;
      CamY = _y;
   };
   onEnterFrame = function () {
      _x = _root.char._x;
      _y = _root.char._y;
      CamX = CamX+(_x-CamX)/4;
      _root._x = Stage.width/2-CamX;
      CamY = CamY+(_y-CamY)/4;
      _root._y = Stage.height/2-CamY;
   };
}

Two ways:-
1.)Put the health bar inside another Movie clip, and make the movie clip follow the player.
This makes it easier to control where the hp bar appears.
2.) Add the bar inside the camera, then remove any code from the camera which makes it invisible. (usually something like _visible = false;)


Tue Oct 27, 2009 12:24 pm
Profile
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © phpBB Group.
Designed by Vjacheslav Trushkin for Free Forum/DivisionCore.