Author: SonicPixelation (posted 2012-10-28 23:16:40, viewed 103 times)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| package com.SideScroller.Tile;
import java.util.ArrayList;
import java.util.HashMap;
import org.newdawn.slick.Color;
import org.newdawn.slick.Graphics;
import com.SideScroller.Level.Level;
public class WireTile extends Tile{
boolean set = true;
public int count;
public WireTile() {
}
public void init(Level level){
super.init(level,x,y);
}
public void update(int delta){
if(level != null){
if(level.getTile(x, y).Powered){
}
}
}
public void render(Graphics g, int xx, int yy){
if(Powered){
g.setColor(Color.yellow);
}else{
g.setColor(Color.green);
}
g.fillRect((x*Width)+xx, (y*Height)+yy, Width, Height);
}
public boolean mayPass(){
return true;
}
} |
Special syntax:
- To highlight a line (yellow background), prefix it with '@@'
- To indicate that a line should be removed (red background), prefix it with '-'
- To indicate that a line should be added (green background), prefix it with '+'
- To post multiple snippets, seperate them by '~~~~'
|
Add your game by posting it in the WIP section,
or publish it in Showcase.
The first screenshot will be displayed as a thumbnail.
|
|