/* */ public void tick2() { /* 133 */ for (FlowerMenu.Petal p : FlowerMenu.this.opts) /* 134 */ if (p == this.chosen) { /* 135 */ if (this.s > 0.6D) /* 136 */ p.a = (1.0D - (this.s - 0.6D) / 0.4D); /* 137 */ else if (this.s < 0.3D) { /* 138 */ p.move(p.ta, p.tr * (1.0D - this.s / 0.3D)); /* */ } /* */ } /* 141 */ else if (this.s > 0.3D) /* 142 */ p.a = 0.0D; /* */ else /* 144 */ p.a = (1.0D - this.s / 0.3D); /* */ }
/* 117 */ public void tick2() { for (FlowerMenu.Petal p : FlowerMenu.this.opts) { /* 118 */ p.move(p.ta + (1.0D - this.s) * 3.141592653589793D, p.tr * this.s); /* 119 */ p.a = this.s; /* */ } /* */ }
/* 156 */ public void tick2() { for (FlowerMenu.Petal p : FlowerMenu.this.opts) { /* 157 */ p.move(p.ta + this.s * 3.141592653589793D, p.tr * (1.0D - this.s)); /* 158 */ p.a = (1.0D - this.s); /* */ } }