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
Health Bar Class by danpost, How do i make it so it removes health from another class?
By SomeRandomStuff, with 1 reply.
Replied to by SomeRandomStuff, over 10 years ago:
Wait never mind! I figured it out! Derp :D
Defaulting Game Speed
By n1nikko, with 1 reply.
Replied to by Super_Hippo, over 10 years ago:
What do you mean by default it? Have it set to a specific position when compiling/resetting the scenario or have it set to a specific position when opening Greenfoot and no other speed was set? If it's the first case, just use 'Greenfoot.setSpeed(some value between 0 and 100);'. The second thing isn't possible I think. The Greenfoot default speed will always be in the middle.
Different exit's interacting with different objects
By berdie, with 6 replies.
Last reply by berdie, over 10 years ago:
Ty very much was struggling whole day too make this work!
World cell size & centering actors
By fejfo, with 2 replies.
Last reply by fejfo, over 10 years ago:
My question was quite unclear but I think u answered my question . Thank you
PROBLEMS with using keys to control an actor
By lionkitten, with 2 replies.
Last reply by fejfo, over 10 years ago:
I don't if it is the problem but in check key press you're if don't have { } try this : public void checkKeyPress() { int speed = 3; if(Greenfoot.isKeyDown("up")) { setLocation(getX(), getY() - speed); } if(Greenfoot.isKeyDown("down")) { setLocation(getX(), getY() + speed); } if(Greenfoot.isKeyDown("left")) { setLocation(getX() - speed, getY()); } if(Greenfoot.isKeyDown("right")) { setLocation(getX() + speed, getY()); } }
Need Help!
By xJesterPROx, with 6 replies.
Last reply by xJesterPROx, over 10 years ago:
Thanks Guys!!!
Addition game help
By Yukine, with 11 replies.
Last reply by danpost, over 10 years ago:
Move lines 50 through 55 to right after line 40 (inside the 'if (Greenfoot.mouseClicked(answerbox))' block) You only want to check this when an answer is given.
Greenfoot Does Not Clear Screen
By Kytuzian, with 10 replies.
Last reply by Kytuzian, over 10 years ago:
Ah, I see. I didn't know that creating a new GreenfootImage() would make it transparent (although now I do see it in the documentation). Thanks for your help
Input Locking Up
By Kytuzian, with 2 replies.
Last reply by Kytuzian, over 10 years ago:
The issue seems to have resolved itself at this point, but I believe this is the problem because everything else was working except for the keyboard input.
Help with putting a simple line of text into my world?
By Bluephoenix14, with 2 replies.
Last reply by Bluephoenix14, over 10 years ago:
Thank you Danpost! Everything compiled correctly!
Double Health Bars (as in int double)
By Arbitrage, with 1 reply.
Replied to by danpost, over 10 years ago:
When working with int values and a division operation is involved, make sure to do it last. <Code Omitted>
How can I say my score counter that one object is in a specific cell?
By Markulu, with 1 reply.
Replied to by danpost, over 10 years ago:
Sounds like the player ('someone') has to keep track of whether it has eaten food (and possibly how much food was eaten since the last time at the house). Then when at the house, that someone needs to bump the counter for each food eaten this go-around and re-zero the food eaten field.
Stuck!
By gyoshon, with 30 replies.
Last reply by gyoshon, over 10 years ago:
OK THANK YOU SO MUCH I GOT!!!!!! :>=]
How to make a text box appear
By FelyFret, with 7 replies.
Last reply by FelyFret, over 10 years ago:
Okay thank you!
Get nearest Object
By ds06, with 14 replies.
Last reply by ds06, over 10 years ago:
Oddly, this works now too :D Maybe i misspelled. Thanks again for your help!
618
619
620
621
622
623
624
X