summaryrefslogtreecommitdiffstats
path: root/demos/misc
Commit message (Collapse)AuthorAgeFilesLines
* Removed demosJuan Linietsky2016-06-0350-905/+0
| | | | they go to their own project now
* window management demo: show screen dpiAndreas Haas2016-05-302-0/+4
|
* Joystick demo script cleanupAndreas Haas2016-05-101-5/+4
| | | | Removes a leftover variable and uses constants instead of magic numbers.
* Rotation APIs: Better exposure for degrees methodsRémi Verschelde2016-05-061-1/+1
| | | | | | | | Made public the various set/getters for rotations in degrees. For consistency, renamed the exposed method names to remove the leading underscore, and kept the old names with a deprecation warning. Fixes #4511.
* update joystick demo with joy_connection_changed handlinghondres2016-01-262-0/+9
|
* visual representation for joystick demohondres2016-01-066-5/+130
|
* Update Autoload demoeska2015-12-093-36/+13
|
* Use get_current_scene() instead of hackRémi Verschelde2015-12-091-6/+2
|
* Remove systematic "Init(i)alization here" from _ready()Rémi Verschelde2015-12-091-1/+0
|
* Use upper-cased first letter at the start of comment sentencesRémi Verschelde2015-12-0912-29/+29
|
* Improve code formatting and update to 2.0Rémi Verschelde2015-12-0929-525/+153
| | | | | | | | | | | The scripts were streamlined using more or less the following conventions: - space after a comma in lists of arguments - space around weak operators (+, -), no space around strong operators (*, /) - space after a comment start (#) - removed trailing spaces or tabs, apart from those that delimit the function indentation level (those could be removed too but since they are added automatically by the editor when typing code, keeping them for now) - function blocks separate by two newlines The scene files were resaved with the (current) 2.0 format, and some scenes that were in XML format were converted to SCN, to be consistent across all demos.
* Make all demo icons 8-bit/color RGB(A)Rémi Verschelde2015-11-231-0/+0
| | | | | Godot does not seem to like 8-bit colormaps. Fixes #2874.
* Add icons to all demos that can have a meaningful oneRémi Verschelde2015-11-195-1/+1
|
* Merge pull request #2700 from neikeq/demo_iconsJuan Linietsky2015-11-182-0/+1
|\ | | | | Added project icon to some demos
| * Added some demo iconsneikeq2015-10-292-0/+1
| |
* | Merge pull request #2642 from leezh/nrex-updateJuan Linietsky2015-11-182-8/+10
|\ \ | | | | | | Updated nrex with new features
| * | Updated RegEx demosZher Huei Lee2015-11-072-8/+10
| |/
* / fix icon locations in demo projectsfirefly24422015-10-212-2/+2
|/
* Made RegEx API similar to old versionZher Huei Lee2015-07-242-2/+2
|
* Added a live-edit RegEx tester to the demosZher Huei Lee2015-07-243-0/+26
|
* added a built-in scene changer API, closes #1928Juan Linietsky2015-05-175-0/+38
|
* window_management input fixhurikhan2015-05-062-1/+9
|
* Set name on window management demo's engine.cfgjack2015-04-251-1/+1
|
* -renamed function to get object from instance idJuan Linietsky2015-04-181-14/+16
| | | | -added function to get list of tiles used
* scene switcher demo changed to reflect tutorial, fixes #1673Juan Linietsky2015-04-121-9/+27
|
* adjust the window_management demo to the new function nameshurikhan2015-03-232-27/+27
|
* fixes to new window management APIJuan Linietsky2015-03-221-19/+19
| | | | | | -needs testing on Linux -needs testing on Windows -NEED SOMEONE TO IMPLEMENT IT ON OSX!! PLEASE HELP!
* removed up, down, left, right keys from the demo.hurikhan2015-03-082-12/+0
| | | | were used before for fast multiscreen setup testing.
* fixing a typo in the demohurikhan2015-03-081-0/+0
|
* added Label_MouseGrab_KeyInfohurikhan2015-03-082-0/+3
|
* cleanup + MouseGrabhurikhan2015-02-122-0/+2
|
* * Cleanup for PRhurikhan2015-01-224-99/+68
| | | | * Demo shows a Dialog with not implemented methods at startup
* * observer scene for the demohurikhan2015-01-223-0/+176
|
* * fix compilation without scons experimental_wm_api=yeshurikhan2015-01-223-2/+11
| | | | * Extended the demo with an addional MouseGrab Test
* * multi_screen testing + bugfixeshurikhan2015-01-182-0/+2
| | | | | | * ALT-TAB is working * tested on Ubuntu 14.10 Unity + LXDE * minor cleanup
* * cleanup window state handlinghurikhan2015-01-172-11/+17
| | | | * first attemps in handling ALT+TABa (WIP)
* added the following methods:hurikhan2015-01-172-7/+26
| | | | | | | * set_minimized(bool) * bool is_minimized() * set_maximized(bool) * bool is_maximized()
* rearrange the demohurikhan2015-01-162-3/+1
|
* WIP -- set_resizable() + is_resizable addedhurikhan2015-01-152-2/+26
|
* demo window set to resizeable (need a bugfix her)hurikhan2015-01-141-1/+1
|
* don't start demo in fullscreen modehurikhan2015-01-141-1/+2
|
* get_screen() + set_screen() addedhurikhan2015-01-143-1/+30
|
* Using Xinerama extension for getting screen infohurikhan2015-01-131-1/+1
|
* get_screen_position() addedhurikhan2015-01-132-3/+8
|
* Demo misc/window_management addedhurikhan2015-01-115-0/+45
|
* 1.Change interpolate_callback:p_times_in_sec argument before p_callback ↵sanikoyes2014-12-191-2/+2
| | | | | | | | argument(more readable) 2.NodePath replace to instance_ID(can control object doe's not in scene tree) 3.Change interpolate types from Node to Object, can control more types(etc script class object) 4.Add pending_update counter, avoid insert/remove interpolates-list while traversal it
* Add missing icon.png to tween demomarynate2014-12-081-0/+0
|
* UDP FixesJuan Linietsky2014-11-134-0/+77
| | | | | | | | | | | | | | -=-=-=-=- Curse the day I decided to port UDP code, as it ended up being two nights of work. At least It's done now (I hope). -Fixed UDP Support, API seems stable -Added UDP Chat demo (chat that can lose your packets, heh) -Added helpers to areas and bodies to get list of collided bodies and contained bodies. -Sped up screen/viewport capture code. -Added code to save an image as PNG -Small fix so scripts register their singletons after modules did.
* SceneMainLoop -> SceneTreeJuan Linietsky2014-11-052-4/+4
| | | | | | | | | | | | -=-=-=-=-=-=-=-=-=-=-=-=-=- *YOUR SOURCE MIGHT NOT WORK* For mor information on fix: https://github.com/okamstudio/godot/wiki/devel_scene_tree Other stuff: -Shower of bullets demo -Fixes all around
* missing demo filesJuan Linietsky2014-10-031-5/+0
|