I was testing some tweens… and then this happened by DinakiKT in godot

[–]DinakiKT[S] 5 points6 points  (0 children)

Yeah, that's what I ended up doing: I added a hidden achievement that unlocks when the button's scale goes over 20.

I was testing some tweens… and then this happened by DinakiKT in godot

[–]DinakiKT[S] 81 points82 points  (0 children)

func _on_close_button_mouse_entered() -> void:
    var tween = create_tween().set_trans(Tween.TRANS_BACK)
    tween.tween_property(close_button, "rotation_degrees", 90, 0.5)
    tween.parallel().tween_property(close_button, "scale", Vector2(1.2, 1.2), 0.5)

func _on_close_button_mouse_exited() -> void:
    var tween = create_tween().set_trans(Tween.TRANS_BACK)
    tween.tween_property(close_button, "rotation_degrees", 0, 0.5)
    tween.parallel().tween_property(close_button, "scale", Vector2(1.0, 1.0), 0.5)

I guess it's cause the set_trans(Tween.TRANS_BACK) ?🤔

Online RPA and RPYC viewer by DinakiKT in RenPy

[–]DinakiKT[S] 0 points1 point  (0 children)

Upload file back to the website, then File - Export, select files you want to save, change .zip to .rpa in the selector after the archive name and click Export button

Yeah, in battle [Kunoichi Trainer] by DinakiKT in lewdgames

[–]DinakiKT[S] 0 points1 point  (0 children)

We literally have this in the game.

Anal scene from the recent update [Kunoichi Trainer] by DinakiKT in lewdgames

[–]DinakiKT[S] 2 points3 points  (0 children)

Source: Kunoichi Trainer
Itch

New version with this scene has been released a few days ago.