Skip to content

A add-on which can quickly be added to your 3D project to have a spring based grappling hook system similar to Unity

License

Notifications You must be signed in to change notification settings

OverlordDestro/DestroHook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Grappling hook add-on for Godot 4.3 3D

Alt text

Destro-hook is an add-on that simplifies the creation of a spring based grappling hook mechanic in Godot 4.3 3D

Introduction video: https://www.youtube.com/watch?v=ecikN4f2bsA

This reposetory includes all the tools you need to add a grappling hook mechanic to your game, aswell as a scene with the grappling hook system and a character controler already implemented.

FEATURES

  • spring based grappling hook system similar to how it works in unity with a custom node for easier implementation
  • smoothed character controler
  • shader to make the rope wiggle

REQUIREMENTS

before you can use the system you must add a few actions to the input map with the following names

for character controler

  • move_forward, move_backward, move_right, move_left

for grappling hook

  • action_jump, LMB (left mouse button), MWU (mouse wheel up), MWD (mouse wheel down)

you can also opt to not do that and instead change the action names in code or in the export variables

** NOTE: the grappling system works best when using a smoothed controler for the player, a non smoothed controler will cause undesired movement and effects. Because of this, I included my own basic character controler.

HOW TO USE:

In project settings, plugins, you will need to enable DestroHook so that the custom node shows up

Under scenes you can find example_hook.tscn which has everything already set up.

Otherwise it's easy to setup, as you just need to add a new node to the player named "HookController" After the HookController is added, you just need to add your input names to the export variables, add the hook scene (the scene with the hook and rope) to the export variable, add a raycast to the player that shoots from the players camera and add it to the export variable and finally the hook source, which is a Node3D/Marker3D where the rope will connect.

The models, placement and code can all be easily changed/modified to suit your needs.

ABOUT:

It honestly really annoyed me how there isn't any published spring based grappling systems in godot till now (it would have helped me a lot a year ago)

I was really displeased by how everyone just made some crappy grappling system where it's just point and click, throw the player directly into the hook with some force, no swinging, no dampening, boring.

I am aware that some people have done this before me, but to my investigations, haven't released the source code.

So I decided to make my own, it isn't perfect and is ment as a base to make better systems with in the future, but it's better than what others have made.

The entire hook physics are simplified to a few lines of code, which is basically just logic for a Spring3D but reshaped a bit.

Credit also goes to LowRezCat for making grappling hook 3D, which I used as a base to make my improved version.

About

A add-on which can quickly be added to your 3D project to have a spring based grappling hook system similar to Unity

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published