Sadly the machine says can’t update and edit my post/summary until a day have passed since there is a max # of updates/edits per time
I think right now talking a little about a “thing” like a person or artwork, and then going on to talk about variables (information) is a the best thing to do. Not sure yet
So this the rest of my notes that I need to update and reorganize in future:
graphics (artwork) has actions
you can create your own actions…
code (“events”) cannot be re used
actions (abilities, “behaviors”)
can be added to graphics (artwork)
seems like code (“events”) for some reason has to be “re created”
actions (abilities, “behaviors”)
They can move object,
change its variables,
change animations
(for Art objects),
change text
(for text objects)
can do anything you
" usually do with code."
re usable graphics (aka: artwork you can use and copy again)
“Custom objects” are also called “Prefabs” or “Templates”
more modular by having an object
that can be reused a
nd customized in different scenes.
graphics can be used again in diffrent scneces
and can be changed in those diff scenes
user interface graphics can be made by combining
different graphics…
graphics you create contain other graphics
“vairables stuff”
can use global var = in all scenes
For instance, they can be used to store the player’s score across different levels/scenes.
-
Scene variables
are only accessible from the scene they are created in
. They can be used for data that only concerns one scene.
scene var = used
would be able to access
the time remaining to
complete the level/scene.
graphics var = only affect that graphic (artwork)
When you add variables to an object,
any copy of object
put on scene
or created
during game
will have those variables
attached to it.
which are:
- stored in memory for as long as a specific copy of an object exists,
- is different for each copy of object.
They’re useful for storing data associated
with individual copies of an object,
such as amount of health an enemy has,
ammo, etc…
They’re deleted from memory
when copy is removed from scene.
For a variable of an object, you write object name
first followed by a dot and variable name. For example:
“player points are” + Player.Points
saves
By default,
nothing is persisted between game sessions.
(but seems like it’d be better if it did)
every game is basically a site that either runs directly
in a browser (Web export)
or inside a stripped–
down browser container “Electron”
(Windows, macOS, Linux) / “Apache Cordova” (Android, iOS).
can also save to os windows
using extensions
more grpahics stuff
dont you specify objects when you put in the first place?
https://wiki.gdevelop.io/gdevelop5/events/object-picking/
code
When adding “conditions/actions”
OnLy SOME of them can add “expressions” things via some icon
code or actions ??
movment
forces
The speed of movement on both the X (horizontal) and Y (vertical) axis, in pixels per second
The angle to move towards and the speed, in pixels per second
An instant force will only move the object for one frame
A permanent force will move the object every frame until it is stopped
moving objects
Some “behaviors”, like the Physics engine or Pathfinding, may move the objects by themselves. In this case, it is better not to use the built-in forces system and instead rely only on actions provided by these behaviors.