【发布时间】:2019-01-08 11:37:36
【问题描述】:
我有一个问题,一旦热气球到达地面,就会出现黑色背景。
// a switch case based on state with appropriate calls
switch (state) {
// scene 1
case 1:
drawBackground1(); // the first background to appear
drawSlogan1(); // display the first slogan
break;
// scene 2
case 2:
drawBackground2(); // the second background to appear
drawSlogan2(); // display the second slogan
break;
// scene 3
case 3:
drawBackground1(); // the third background to appear
drawSlogan3(); // display the last slogan
break;
}
我在这里显示此代码是因为这是我更改的唯一代码,它使黑色背景出现。
【问题讨论】: