Thread: Health for HUD
View Single Post
  #7  
Old 09-19-2010, 01:01 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Quote:
Originally Posted by MattKan View Post
How does he make it so that the hearts appear in the top right corner of the screen for all screen sizes?
Relative positioning using screenwidth and screenheight. I.e:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
// Centered Block
  
with (findimg(200)) {
    
screenwidth 2;
    
screenheight 2;
    
image "block.png";
    
layer 4;
  }
  
// Top Right Block
  
with (findimg(201)) {
    
screenwidth 64;
    
64;
    
image "block.png";
    
layer 4;
  }
  
// Bottom Right
  
with (findimg(202)) {
    
screenwidth 64;
    
screenheight 64;
    
image "block.png";
    
layer 4;
  }

__________________
Quote:
Reply With Quote