Questions tagged [bug]
The bug tag has no summary.
45 questions
0 votes
1 answer
104 views
How to make enemies spawn off-screen in Godot 4.5?
I am trying to make a game using Godot 4.5 where enemies spawn off-screen, but I faced this bug where they spawn on-screen instead: The white squares are the spawned enemies and the red is the player....
0 votes
1 answer
82 views
Scriptable object lists influencing each other?
I have 2 scriptable object inventories; one acts as the starting inventory and the other acts as the current one. I add objects to the current inventory but I set it's values to the starting inventory ...
1 vote
0 answers
190 views
Sprite2D texture repeat switches from Mirror to Disabled when resizing window
In Godot 4, I set the texture repeat of a Sprite2D to 'Mirror', When I run the game, it works fine except when I resize the window — then the texture repeat switches to 'disabled'. Is there a ...
0 votes
1 answer
170 views
In Unity, switching mesh on skinnedMeshRenderer works in editor but not in build
I got this very annoying bug, since it's only related to build and I'm wondering why that bug does not appear in editor. I'm trying to switch the mesh that SkinnedMeshRenderer displays with another ...
1 vote
1 answer
1k views
Problem with Rotation clamping in Unity
I'm trying to get a simple cannon to rotate to point at the mouse, but I only want it to follow the mouse for 180 degrees and then stop following the mouse, and pick up again when the player re-enters ...
0 votes
1 answer
113 views
Unity Rendering (Bug): Objects rendered as multiple instances after repositioning
Context: I am currently making the menu for my game demo. It involoves "Raindrop"-Gameobjects (Sprites) being repositoned and recolored after a random amount of time. I do this by instantiating a ...
0 votes
1 answer
212 views
Unity3D HTC Vive graphical bug when making builds
Recently I noticed that my builds seem to have a weird graphical bug. This only occurs when I play a build. Running the game in VR in unity play mode doesn't show this bug. I am not sure what is ...
-1 votes
1 answer
897 views
Why is the line not being drawn?
I'm trying to add a few polishing touches to my puzzle game (made in Game Maker) in the vein of Ironclad. The following code is for adding a gem object to a stack that already has at least one other ...