File tree Expand file tree Collapse file tree 3 files changed +28
-2
lines changed
src/main/java/org/runejs/client/media Expand file tree Collapse file tree 3 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 3
3
import org .runejs .client .Interface3 ;
4
4
5
5
public class Rasterizer3D extends Rasterizer {
6
+ /**
7
+ * Some kind of colour information, Dane calls this "reciprocal16"
8
+ */
6
9
public static int [] anIntArray2929 = new int [2048 ];
7
10
public static int bottomY ;
8
11
public static int center_y ;
9
12
public static int [] hsl2rgb = new int [65536 ];
10
13
public static int alpha = 0 ;
14
+ /**
15
+ * x position/size info of some kind
16
+ *
17
+ * TODO rename
18
+ */
11
19
public static int anInt2934 ;
20
+ /**
21
+ * negative center_y?
22
+ *
23
+ * TODO rename
24
+ */
12
25
public static int anInt2935 ;
13
26
public static boolean opaque = false ;
14
27
public static int center_x ;
15
28
public static int [] lineOffsets ;
16
29
public static Interface3 interface3 ;
17
30
public static int [] shadowDecay = new int [512 ];
31
+ /**
32
+ * y position/size info of some kind
33
+ *
34
+ * TODO rename
35
+ */
18
36
public static int anInt2941 ;
37
+ /**
38
+ * negative center_y?
39
+ *
40
+ * TODO rename
41
+ */
19
42
public static int anInt2942 ;
20
43
public static int [] sinetable = new int [2048 ];
21
44
public static boolean notTextured = true ;
Original file line number Diff line number Diff line change @@ -42,7 +42,10 @@ public class Model extends Renderable {
42
42
public static int [] anIntArray3225 ;
43
43
public static int [] anIntArray3226 ;
44
44
public static int [] anIntArray3227 ;
45
- public static int [] anIntArray3228 ;
45
+ /**
46
+ * Some kind of colour information
47
+ */
48
+ private static int [] anIntArray3228 ;
46
49
47
50
static {
48
51
anIntArray3199 = new int [128 ];
Original file line number Diff line number Diff line change 9
9
10
10
public class Npc extends Actor {
11
11
public ActorDefinition actorDefinition ;
12
-
12
+
13
13
public static void parseNpcUpdateMasks (PacketBuffer buffer ) {
14
14
for (int i = 0 ; i < actorUpdatingIndex ; i ++) {
15
15
int npcIndex = Player .actorUpdatingIndices [i ];
You can’t perform that action at this time.
0 commit comments