Slick Forums

Discuss the Slick 2D Library
It is currently Tue Jun 18, 2013 10:10 pm

All times are UTC




Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: Wed Jun 27, 2012 1:09 pm 
Offline

Joined: Wed Jun 27, 2012 12:53 pm
Posts: 1
Someone knows how to solve this error? I'm trying to use a torch to light the place, but this error is happening = / I've tried everything

Image
Code:
    private int ID = -1;
    TiledMap map;
    private Image alphaMap;
    private Color sharedColor = new Color(1f, 1f, 1f, 1f);
   
    public Gameplay(int ID)
    {
        this.ID = ID;
    }
   
    public int getID()
    {
        return this.ID;
    }
   
    public void init(GameContainer container, StateBasedGame game) throws SlickException
    {
        map = new TiledMap("resource/maps/teste.tmx");
        alphaMap = new Image("resource/lighting_sprites.png", false, Image.FILTER_NEAREST).getSubImage(0, 40 + 2, 256,256);
    }
   
    public void update(GameContainer container, StateBasedGame game, int delta) throws SlickException
    {

    }

    public void render(GameContainer container, StateBasedGame game, Graphics g) throws SlickException
    {
        g.setDrawMode(Graphics.MODE_ALPHA_MAP);
   g.clearAlphaMap();
        alphaMap.draw(container.getInput().getAbsoluteMouseX(), container.getInput().getAbsoluteMouseY(), 220,220, sharedColor);
        g.setClip(container.getInput().getAbsoluteMouseX(), container.getInput().getAbsoluteMouseY(), 220,220);
        g.setDrawMode(Graphics.MODE_ALPHA_BLEND);
        map.render(32, 32);

        g.clearClip();
       
    }


Top
 Profile  
 
PostPosted: Thu Jul 05, 2012 2:02 pm 
Offline

Joined: Wed Feb 15, 2012 10:17 am
Posts: 11
Sorry, which error are you speaking about?


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 2 guests


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® Forum Software © phpBB Group