Why are most of my projects not in explore section yet?
I am Tiberius2, but all of the my other account "Tiberius", has all of the games in public and in the explore section are in there, but this account "Tiberius2" has only one which is my utility functions library is there, why? (ESPECIALLY MY QUICK ENGINE 2.0 I WORKED ON FOR OVER 6 MONTHS SHOULD BE IN THE EXPLORE SECTION ðŸ˜)
Click on my profile and see the ton of not in the explore section ones.
In the "publish" section under the green button, you must set a check mark for "List my project in the Explore section"
All of them I have set a check mark for "List my project in the Explore section", but still not there
A moderator needs to pass your project for it to appear on the explore section, which does take time.
just wait a little and check in soon.
yeah I know I hope it does not take forever
@tiberius hey I have a question do you know the code you need for when you move a certain direction the sprite changes.
Here is an example:
init = function()
player = object
x = 100,
y = 100,
speed = 2,
sprite = "player_down" // Default sprite
end
end
update = function()
if keyboard.LEFT then
player.x -= player.speed
player.sprite = "player_left"
end
if keyboard.RIGHT then
player.x += player.speed
player.sprite = "player_right"
end
if keyboard.UP then
player.y -= player.speed
player.sprite = "player_up"
end
if keyboard.DOWN then
player.y += player.speed
player.sprite = "player_down"
end
end
draw = function()
screen.clear() // Clear the screen each frame
screen.drawSprite(player.sprite, player.x, player.y, 32, 32) // Draw the current sprite
end