I am new to greenfoot and my actors: Bee1 is a bit too big, How do I get the actor to scale down?
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Write a description of class Bee2 here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Bee2 extends Actor
{
/**
* Act - do whatever the Bee2 wants to do. This method is called whenever
* the 'Act' or 'Run' button gets pressed in the environment.
*/
public void act()
{
// Add your action code here.
}
}
Can you please show me where you would add the code and where I can change the coordinates. Thank you so much, I have been stuck on this for hours

