How to Make a point and click game

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Gnome

Hello i am new in Godot and i want to make a point and click game but i dont know where to start i searched on google and youtube and i did not find anything to help me !!
i think i need to Use IU control but how ?!

:bust_in_silhouette: Reply From: kidscancode

First you need to learn how to use Godot in general. Go here:

Go through this whole section. It teaches you the basics of using Godot that you’ll need for any type of game. It’s the best way to get started with the engine.

I am NOT that new on godot :stuck_out_tongue:
but thanx <3 i will start all over why not i am not doing anything anyway !!
have a nice day

Gnome | 2019-10-09 06:11

The first thing you said was "Hello i am new in Godot "

kidscancode | 2019-10-09 06:13

For point-and-click you do not necessarily need UI nodes. You really just need mouse input:
Input examples — Godot Engine (latest) documentation in English

Area2D can help with defining clickable regions. Any CollisionObject2D can detect mouse input. Movement will depend on what type of node you’re using for your character - KinematicBody2D or Area2D are both popular options.

There’s a simple movement example here:
2D movement overview — Godot Engine (latest) documentation in English

kidscancode | 2019-10-09 06:17

yes you are right !!!
and u give the way that i will make the game
you give alot of thing to think about man !!! " I am dead serious "
thanx <3

Gnome | 2019-10-09 06:23