The McLeodGaming forums were permanently closed on April 30th, 2020. You are currently viewing a read-only archive.
View unanswered posts | View active topics It is currently Fri May 15, 2020 5:38 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.



 [ 2 posts ] 
[Request] Having health follow stage 
Author Message
User avatar

Joined: Tue Aug 12, 2008 2:07 pm
Posts: 39
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;
   };
}

_________________
get free wii points here!


Tue Sep 29, 2009 5:47 pm
User avatar

Joined: Tue Oct 27, 2009 11:00 am
Posts: 6
Gender: Male
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 11:24 am
Display posts from previous:  Sort by  
 [ 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

cron
Powered by phpBB® Forum Software © phpBB Group
Designed by ST Software for PTF.