Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 8,079
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276
Full Statistics
|
Online Users |
There are currently 222 online users. » 0 Member(s) | 220 Guest(s) Bing, Google
|
Latest Threads |
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 6,322
|
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 745
|
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,529
|
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,237
|
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,121
|
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 985
|
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 966
|
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,178
|
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 990
|
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 943
|
|
|
I found this interesting (Java) |
Posted by: Chaos - 01-15-2012, 02:57 AM - Forum: Programming
- Replies (2)
|
 |
A multidimensional array!
In the Java programming language, a multidimensional array is simply an array whose components are themselves arrays.
[lua]
class MultiDimArrayDemo {
public static void main(String[] args) {
String[][] names = {
{"Mr. ", "Mrs. ", "Ms. "},
{"Smith", "Jones"}
};
// Mr. Smith
System.out.println(names[0][0] +
names[1][0]);
// Ms. Jones
System.out.println(names[0][2] +
names[1][1]);
}
}
[/lua]
|
|
|
Single-axis "FixedPositionX/Y" object |
Posted by: TylerMcBride - 01-13-2012, 07:02 PM - Forum: Suggestions
- No Replies
|
 |
The FixedPosition object is great, but it restricts BOTH axes when I really want to make a platform that only moves up and down, for example (when the player touches it, it can slide left or right from their movements).
Can we get FixedPositionX and FixedPositionY objects to fix this problem? Or some way to only enable one axis at a time?
|
|
|
Saving/loading functionality broken |
Posted by: TylerMcBride - 01-13-2012, 05:19 PM - Forum: Bug Reports
- Replies (5)
|
 |
The past few days I've attempted to save levels and load them up later, but each time I do, the level just comes up as blank. Absolutely nothing in the World.
I've successfully been unable to save nor load on both my Macbook and Windows computers, so something's obviously wrong here. The problem seems to be with loading, not saving.
(also deleting things on Macbooks is annoying since you have to use Cut, there's no delete button/option)
|
|
|
|