This site requires JavaScript, please enable it in your browser!
Greenfoot
Username
Password
Remember Me?
Sign Up, Lost Password
Activity
About
Documentation
Download
Discuss
Scenarios
Discussions
You need to login to take part
Current Discussions
Error in code
By geekykid2013, with 7 replies.
Last reply by danpost, almost 12 years ago:
One thing I would change is line 32, which I would make: <Code Omitted>
Counter
By Hawx_, with 2 replies.
Last reply by Hawx_, almost 12 years ago:
Thanks , works perfectly!
delay issues
By Banginwithflavor, with 5 replies.
Last reply by Banginwithflavor, almost 12 years ago:
@Gevater_Tod4711, Thanks a ton! it works fine now :D @danpost, thanks for showing me how to slow it down it was going a bit fast!
Using getUnivX() (danpost's SWorld)
By FlyingRabidUnicornPig, with 5 replies.
Last reply by danpost, almost 12 years ago:
To get the x value in world coordinates of the far right side of the scrolling area, then with the new methods, you can use: <Code Omitted>
scrolling back ground
By Avik, with 1 reply.
Replied to by GreenGoo, almost 12 years ago:
Try this : http://www.greenfoot.org/scenarios/6719
Getting Enemies to Follow the Player
By cecarson, with 1 reply.
Replied to by Avik, almost 12 years ago:
public void act() { moveIt(); followHuman(); RandMove(); } public void moveIt() { move(2); if(atWorldEdge()) { turn(5); } } public void RandMove() { if(Greenfoot.getRandomNumber(100)>20) { turn(Greenfoot.getRandomNumber(20)-10); } } public void followHuman() { String target; getObjectsInRange(400,Survivor.class); int targetX = getX(); int targetY
hi
By Alaska, with 1 reply.
Replied to by holla, almost 12 years ago:
<Code Omitted>and <Code Omitted>
sorry
By Alaska, with no replies.
*object
Let objects in my world intersect with each other
By geekykid2013, with 2 replies.
Last reply by danpost, almost 12 years ago:
You could use a string whose different characters represent different object types. Iterate through the string to place the objects in the world. For example (sort of a template):
counter
By GrimCreeper312, with 3 replies.
Last reply by danpost, almost 12 years ago:
You can add a secondary constructor, adjust the 'updateImage' method and, if you want (or need) to, add a method to change (or set) the prefix. You will also have to add an instance String field to hold the prefix.
How to draw a Polygon ?
By Clem, with 2 replies.
Last reply by Clem, almost 12 years ago:
The drawing works, thanks a lot !
i get an error when trying to view scenarios on the website.
By tylers, with 2 replies.
Last reply by tylers, almost 12 years ago:
It still dont work when i do that. Sorry it been a long time just that i've haven't had a chance to fix it until now.
Gravity and Ground Help
By GrimCreeper312, with 1 reply.
Replied to by Gevater_Tod4711, almost 12 years ago:
Maybe
my Operation: Crashtest game
can help you. If you have a look at the world classe getMaterialAt or getMaterialNumberAt that may help you with the ground detection. For jumping and falling you should have a look in the Hero class. Especally the methods for movement and the setLocation methods.
Help Please
By GrimCreeper312, with 6 replies.
Last reply by GrimCreeper312, almost 12 years ago:
it was a corrupt png file
how to pause a timer
By MBX5, with 10 replies.
Last reply by Kartoffelbrot, almost 12 years ago:
Or you only implement a boolean variable called break. IF the game should be paused you set it to 'true'. annd the act-method of the timer will only work then, like: <Code Omitted>
842
843
844
845
846
847
848
X