View Single Post
  #3  
Old 08-25-2012, 05:57 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
Originally Posted by fowlplay4 View Post
You can't rotate the panel but you can rotate other objects (i.e. showimg object) and draw them on to the panel:

PHP Code:
//#CLIENTSIDE

function onCreated() {
  
temp.obj findimg(200);
  
with (temp.obj) {
    
image "block.png";
    
rotation pi;
  }
  new 
GuiWindowCtrl(RotateExample) {
    
width height 200;
    new 
GuiDrawingPanel(RotateExamplePanel) {
      
7;
      
25;
      
width height 190;
      
clearall();
      
drawobject(3030temp.obj);
    }
  }
  
hideimg(200);

Thanks. This is exactly what I was looking for.
Reply With Quote