雪が降るプログラムの中に星と動く文字を追加したいです。
現時点でこのようなプログラムを作成したのですが、エラーがでてしまい上手く作動しません。
unexpected token: void のエラーが出てしまいます。
プログラミング初心者で分からないことが多いので、エラーが出てしまう部分を改善して正しいプログラミングを教えて頂きたいです。宜しくお願い致します。
class Snowflake {
float x; //x axis
float y; //y axis
float s; //size
color c; //color
float dy; //speed
Snowflake() { //Function to create snowflake
x = random(width); //initial x point is random
y = random(height);
dy = random(0, 3); // Falling speed is random between 3 and 10
s = 5 * dy / 4.0; //Size is small if initial speed is slow
c = #ffffff; //white snow
}
void drop() { //create snow and move
y += dy;
if (y > height) y = 0; //if snow gets the bottom of the screen, return to top
noStroke(); //no outline
fill(c);
ellipse(x, y, s, s);
}
}
Snowflake[] sf = new Snowflake[5000]; //prepare the area for 1000 snow object
void setup(){
size (600,600);
noCursor();
for (int i = 0; i < 2000; i++) {
sf[i] = new Snowflake();
}
}
void draw() {
background(12,15,32);
for(int i = 0; i < 2000; i++) {
sf[i].drop();
}
for(int i=0;i<10;i++){
fill((i%2+1)128,(i%2+1)128,0);
float r=iTAU/10-PI/2;
float d=100-i%250;
float e=100-(i+1)%2*50;
triangle(120,120,cos(r)*d+120,sin(r)*d+120,cos(r+TAU/10)*e+120,sin(r+TAU/10)*e+120);
float x;
PFont font;
String msg = "Winter";
float speed = -1;
String msgLine="";
float msgWidth;
void setup () {
size(400, 200);
//font = loadFont("Calibri-BoldItalic-48.vlw");
font = createFont("Calibri Bold Italic",48);
textFont(font);
textSize(32);
x = width;
msgWidth=textWidth(msg);
for(int i=0;i<(int)(width/msgWidth)+2; i++){
msgLine+=msg;
}
}
void draw() {
background(255);
fill(0);
text(msgLine, x, height/2);
x = x+speed;
if(x<-msgWidth){
x=0;
}
}