I aaaaam the one-and onleeeeey ♪♪♪
0そうだね 未プレイ
yep im the guy who randomly joins the chat.. dasetwas xd
0そうだね 未プレイ
11/10 extremely unreadable syntax
2そうだね 未プレイ
data is data, just convert it to a usable type
0そうだね 未プレイ
It turned into an Petit computer :DDDD
2そうだね 未プレイ
but you have to release it with different art and name…
0そうだね 未プレイ
i make my pants full if i would play this XD
0そうだね 未プレイ
Hey, I can help you with the 3d stuff, tho its a bit complex! I´ll comment on some of your posts to keep it ondisturbed
1そうだね 未プレイ
look in the play diaries for someone asking how to add velocity. I made up code there, it will also work for just one point. Just modify X to be like 0.7 more, then the character will jump
0そうだね 未プレイ
most people use the Euler integration, but then you modify VX instead of X directly, like in the verlet integration. And verlet is more accurate, saving only points instead of smaller velocity values
1そうだね 未プレイ
You can use the Verlet integration. Make a FOR loop containing:
X=X+ ???
Y=Y+ ???
VX=X[I]-OLDX[I]*FRICTION
VY=Y[I]-OLDY[I]*FRICTION
OLDX[I]=X[I]
OLDY[I]=X[I]
X=X+VX
Y=Y+VY
the arrays OLDX and OLDY are needed
0そうだね 未プレイ
what everybody will say is, watch petit professor on youtube. you have to be good in maths to be able to make good games also, just sayin
0そうだね 未プレイ
a tip: make your game consist out of several loops, so for a battle just make another loop
0そうだね 未プレイ