Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Error not covered: Name "X" called as a function but is a "float"

Open Beginner friendly
#1,393 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
2/5
Estimated time
1-3 hours
Newbie friendliness
75/100
Issue type
Bug
Clarity
Clearly specified
Activity status
Active
Tech stack
godot
Domain
game-dev

Research direction

The error occurs in the lesson file res://course/lesson-10-the-game-loop/lesson.bbcode. Examine the code snippet where position.x(5) is called; position.x is a float property, not a function. Look for similar patterns in the lesson content and correct the example to use assignment (position.x += 5) or a proper method. Test the fix by running the lesson in the web platform to ensure the error message is resolved.

Written by the indexing model from the issue text.

Description

content

User report:

Error: Name "X" called as a function but is a "float" cannot be explained yet

Technical information:

  • Location: L10.P2 - The Game Loop > Creating Circular Movement
  • File: res://course/lesson-10-the-game-loop/lesson.bbcode
  • Platform: Web
  • Commit: c26e748

Code from the current practice

func _process(delta):
	rotate(0.05)
func move_local_x():
	position.x(5)
Dominant language
GDScript
Stars
2.8k
Forks
235
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from GDQuest/learn-gdscript

All issues in GDQuest/learn-gdscript

Similar issues

More Game Dev issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.