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
Want to remove Buttons
By Blackdow97, with 6 replies.
Last reply by Blackdow97, almost 11 years ago:
@Danpost Dude for real you help me so much! Sry for my stupid questions, i'm a real noob in Greenfoot....But i make much fun to programm my game. Maybe later i got more questions hopefully someone will still help me^^ :)
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, almost 11 years ago:
Wait never mind! I figured it out! Derp :D
Defaulting Game Speed
By n1nikko, with 1 reply.
Replied to by Super_Hippo, almost 11 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, almost 11 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, almost 11 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, almost 11 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, almost 11 years ago:
Thanks Guys!!!
Addition game help
By Yukine, with 11 replies.
Last reply by danpost, almost 11 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, almost 11 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, almost 11 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, almost 11 years ago:
Thank you Danpost! Everything compiled correctly!
Double Health Bars (as in int double)
By Arbitrage, with 1 reply.
Replied to by danpost, almost 11 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, almost 11 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, almost 11 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, almost 11 years ago:
Okay thank you!
618
619
620
621
622
623
624
X