Bug with GS Y axis?
Player_E
Member, PRO Posts: 604
I have been trying to tinker with the Y axis in my new game, but GS does not seem to recognize that my dimensions are set to 480X640.
I was wondering if this was an issue with GS or maybe I'm just doing something wrong. To make everything perfectly clear I made a short video to display the issues that I am having.
Video here:
Hopefully one of the GS team members can put in their expert advice since they are aiming for a more open channel of communication.
I was wondering if this was an issue with GS or maybe I'm just doing something wrong. To make everything perfectly clear I made a short video to display the issues that I am having.
Video here:
Hopefully one of the GS team members can put in their expert advice since they are aiming for a more open channel of communication.
Comments
Seems that while testing game GS adjusts, so the screen you see is always the "graph" 480x320.
So no matter where you are or how big you scene is the bottom left corner will always be (0,0) and the top right will always be (480,320)
This should really be fixed, but that is just my opinion.
do you happen to have a layer's scrollable unchecked?
Send and Receive Data using your own Server Tutorial! | Vote for A Long Way Home on Steam Greenlight! | Ten Years Left
I noticed that I cannot change my game attribute screen size. it is stuck at 480x320 I can only change scene attribute size to 480x640, but then again I have never tried this before so it might be like that for everyone.
if you want to email me you're project I can take a quick look
Send and Receive Data using your own Server Tutorial! | Vote for A Long Way Home on Steam Greenlight! | Ten Years Left
screen attribute size can be changed to whatever playable area you want.
Send and Receive Data using your own Server Tutorial! | Vote for A Long Way Home on Steam Greenlight! | Ten Years Left
but i don't think it's a bug, I'm doing something very similar in my project with menus, but I don't have any spawn or destroys, I just move the actor on and off screen.
I have something like this:
when mouse is down
constrain actor x to mouse x
constrain actor y to mouse y
when mouse is released
move actorX to -50
move actorY to -50
I'm also shrinking the object down to 10,10 when it's off screen and enlarging it to the right size when the mouse is clicked
all of this is taking place in an area that would be 0,2048 to 1024,3072
i think you might have some funky / conflicting constrain attributes going on. what I would do is have 2 constrain rules on your player actor that just constrains the X and Y position to two attributes you created, like PlayerX and PlayerY
then on the crosshairs, when you click down, change, not constrain, (or spawn) the crosshairs position to game.playerX and game.playerY
then only constrain X and Y position of the crosshairs to the mouse position.
Send and Receive Data using your own Server Tutorial! | Vote for A Long Way Home on Steam Greenlight! | Ten Years Left
When player is clicked the Cop actor spawns the crosshairs to his (X,Y) and then the crosshairs (X,Y) are constrained to the mouse position.
During the test that I posted about in my 2nd post I had an actor display text Mouse position Y and I found that Y was at max 320 no matter where I was in the scene. Thats where my theory of GS making bottom left always (0,0) and top right always (480,320) came from.
Send and Receive Data using your own Server Tutorial! | Vote for A Long Way Home on Steam Greenlight! | Ten Years Left
I would really like to hear from someone at GS.... I know its about 1am here, so its probably around 3am for them in Texas, but I hope I will see a response by tomorrow.
Last time I checked I was a pro member and one of the "features" of a pro membership was "first priority tech support"
So GS where is the support?? No response in thread Which I linked to in both of my emails. Not even an email acknowledging they received my message...
Only person to help out was Jonmulcahy which I appreciate very much, but it seems we are both experiencing two different phenomena with GS and not the mention he is not even an employee of GS and yet he took the time to help.
I will be out today, so this will be the last time I can check forum for at least another 6 hours. By that time I expect my "pro feature" to kick in and get some type of support even if it is just an acknowledgement that they are looking into it.
QS
Dr. Sam Beckett never returned home...
Twitter: https://twitter.com/Quantum_Sheep
Web: https://quantumsheep.itch.io
I had the same problem and I THINK this may fix it:
Create 2 attributes named camx and can y. Create a new camera actor and drag it on your scene (out of the actual gameplay area). We are editing the instance of the cam actor.
In the cam actor put 2 constrain attributes, 1)game.cam x to scene.cam.Origin.X, 2) game.camY to scene.cam.originY
Next go to whichever actor your touching put in the rule:
When touch is pressed 1) constrain attribute Action pointX to game.touch1X+game.Camx,
2) do the same for Y
I wasnt able to look at your problem closely, but I remember having a similar problem and then FMG or someone recommended this