我想创建一个java函数,就像等到这在几秒钟内过去,然后他们可能会执行动作..这是我所拥有的:
if(Minecraft.getMinecraft().gameSettings.keyBindJump.pressed)
hasTimePassedS(2);
Minecraft.getMinecraft().thePlayer.motionY = + 8;
private boolean hasTimePassedS(int i) {
long t0 = 0,t1 = 1;
do{
}
while (t1-t0<1000);
return false;
注意:这是两个不同的示例,没有使用/考虑正确的 { } 格式。
我希望在激活顶部代码后有两秒钟的延迟,然后您才能再次按下它。
谢谢!