Glitches, Querks, notable problems or solutions
I just started, which is where most complaints come from, I'm sure. Not used to the software yet... but...
Some things are frustrating:
1) Not able to zoom in an out on the Scene Editor to see my whole map.
2) If I click the scene button, then Layers, and I click an actor, it goes to the actor, but then I have to go through all that clicking again to select the next actor. This is of course if they are under a layer. Too much clicking.
3) This is BIG. Why do things remember a state they were in forever?
Example:
Create 2 actors, and a Game Level Boolean Attribute... called DoIt.... set to false.
then give Actor 1 a rule: Actor receives a touch AND DoIt is true, then Display text "Hello"
Actor 2 has a rule: Actor receives a touch, then change DoIt to true.
I would then assume that Actor 1 would ONLY display "Hello" if both conditions are valid, meaning I clicked on it when DoIt was true.
But if you test this, you will see that you can click on Actor 1, then go over and Click on Actor 2 (changing DoIt to true) and then the text will change on Actor 1.
This is like pressing a doorbell, when the power is off, then expecting to hear a Ding-Dong when you go in the other room and turn the power ON.
4) I've also noticed that Booleans are not so booleany sometimes. To make sure I get the result I want, I have to say "If XX is True, and If XX is NOT False, then do something". I can not just get away with saying "If XX is True, do blabla..." I've noticed this more during loops.
5) The color of the text is WHITE? Why? There should be a way of setting this in preferences. I have to change it to Black every time I want to use it.
I'm glad they made this software, but there are some real bothers with it right now. If anyone knows solutions to these things, or has anything else, they want to add, feel free.
Some things are frustrating:
1) Not able to zoom in an out on the Scene Editor to see my whole map.
2) If I click the scene button, then Layers, and I click an actor, it goes to the actor, but then I have to go through all that clicking again to select the next actor. This is of course if they are under a layer. Too much clicking.
3) This is BIG. Why do things remember a state they were in forever?
Example:
Create 2 actors, and a Game Level Boolean Attribute... called DoIt.... set to false.
then give Actor 1 a rule: Actor receives a touch AND DoIt is true, then Display text "Hello"
Actor 2 has a rule: Actor receives a touch, then change DoIt to true.
I would then assume that Actor 1 would ONLY display "Hello" if both conditions are valid, meaning I clicked on it when DoIt was true.
But if you test this, you will see that you can click on Actor 1, then go over and Click on Actor 2 (changing DoIt to true) and then the text will change on Actor 1.
This is like pressing a doorbell, when the power is off, then expecting to hear a Ding-Dong when you go in the other room and turn the power ON.
4) I've also noticed that Booleans are not so booleany sometimes. To make sure I get the result I want, I have to say "If XX is True, and If XX is NOT False, then do something". I can not just get away with saying "If XX is True, do blabla..." I've noticed this more during loops.
5) The color of the text is WHITE? Why? There should be a way of setting this in preferences. I have to change it to Black every time I want to use it.
I'm glad they made this software, but there are some real bothers with it right now. If anyone knows solutions to these things, or has anything else, they want to add, feel free.
Comments
http://forums.gamesalad.com/discussion/36217/attention-gamesalad-management-what-features-do-you-want-round-2
Cheers
Aaron
Here is the mov. Tell me what I'm doing wrong.
Images of the code.
http://www.crypes.com/work/Actor1_code
http://www.crypes.com/work/Actor2_code
Here is a short clip showing the difference between Pressed, and Released. Pressed is a temporary state Change, and Released is a Permanent State change.
http://www.crypes.com/work/Actor1_code.png
http://www.crypes.com/work/Actor2_code.png
My complaint is that they both should be Temp State.
I would love to have a "Change State" option on the choices for a boolean, instead of just True/False in the rules pulldown. So if it's true, make it false. If false, then make it true.
You're using when Touch is Released instead of Touch is Pressed. My understanding of that condition is that it is true when touch has been pressed and is now released (e.g. right after a touch or a long time after a touch). Someone correct me if I'm wrong. For a long time, I assumed that Touch is Released meant _exactly when_ the actor was released. It should really be named something like Touch Has Been Pressed At Some Point or Touch Is Not Pressed.
Try this and you'll see what I mean:
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User
What I notice is that Actor1 only sees those changes during the time it's colliding with Actor2.
After passing through, it reverts back to the original Move Command.
I tried setting a boolean called ConTact. When Actor1 collides with Actor2 change attribute ConTact to True.
Then another Rule: If ConTact is True accelerate, move, moveto, etc, etc. Not so good.
Same result.
Can you help?
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User
in programming …
one should not rely on eye-balling the placement of objects …
one should define the location of objects precisely (okay to get a proximity at first)
align pixelRows (X) and pixelColumns(Y) …
for each actor's currentPosition in a scene
Rule: when
Event: key: left shift is down
--displayText: self.Position.X.."\n"..self.Position.Y
(you can drag the rule to Custom Behaviors and then easily drag to all prototypes)
best to preview in your scenePreview
rather than trying to remember those numbers …
keep left shift down and click anywhere on your desktop
numbers stay visible and you can write them down
#2. not preserving the user defined state is most annoying to all of us … we are getting a new GUI … hopefully that functionality will be there for us.
#3. the order of your conditions is important
(this is the condition … continue processing
this is not the condition … stop processing)
though with just two conditions … order shouldn't matter
sometimes good to nest the rules in one master rule
but I couldn't duplicate the problem
release anywhere on the scene is a release of touch
release is the defaultState … just as mouseButton (& keyboard keys) up are defaultStates
#4. computer does not rerun the rules …
unless the condition of the Attribute changes
best to nest the rules:
the touch event is when you want the actor to react
the state of the boolean is what determines the reaction
Rule: when
Event: touch is pressed
--Rule: when
--Attribute: game.Dolt is false (the initial state you assigned to it)
----leave the behaviors empty!
--Otherwise:
--DisplayText
#5. in order for the Engine to run … all attributes/parameters have a default state …
as most displayText behaviors show text on the default black scene …
the default fontColor is white
#6. Move is a persistent behavior (not affected by other events)
to define when to Move behavior active … have it in a rule
Rule: when
Attribute: game.ConTact is false
--Move
all these things … are good questions to ask yourself and in the forum
it helps me to ask myself WHEN and then WHAT
and drag Note behaviors in to ask the question in the actor I am working with
Also, white is the default color and you need to change it every time.
To fix this, I had to create an attribute boolean, that goes True on contact, and have Actor1's rule look at that, instead of the actual contact.
This helps for the first hit, but what if I want it to accelerate each time an event happens. I can not predict how many times they will get hit, and then create that many Boolean rules.
@MotherHoose zooming in and out helps a lot. If I am setting up a map, and want to see the overall layout, It would be nice to zoom out. The little white box tells me what the device will see. I want to see the big picture. And when objects are small on screen, every time I want to move them to a new location, it first scales them. No safe place to click when they are small.
Zoom in. Zoom Out. Helps.
Is there a way to input data into a table with an attribute?