Commit Graph
661 Commits
Author SHA1 Message Date
i-need-to-tell-you-something 6fa4bce2de Update gdscript_advanced.rst
Fix 2 typos.
2017-12-29 22:26:26 +02:00
Rémi Verschelde 3d015b0c7c Style: Min required clang-format version is now 5.0.0
(cherry picked from commit 15c7455abd)
2017-12-06 22:00:25 +01:00
Rémi Verschelde ddf70575db Merge pull request #559 from dploeger/issue-526
Introduction to 2d animation added. #526
2017-10-26 12:37:14 +02:00
Dennis Ploeger e6521082bb Introduction to 2d animation added. #526 2017-10-26 12:35:18 +02:00
Rémi Verschelde 2055154f30 Add master extensions to gitignore 2017-10-23 20:50:59 +02:00
Rémi Verschelde 3cc7e89aa0 Update instructions for cross-compilation with MinGW-w64
(cherry picked from commit 690aa9f58c)
2017-10-23 20:49:53 +02:00
Rémi Verschelde e6a97cad7c Merge pull request #547 from N0hbdy/patch-1
Fix minor typo in Kinematic Character 2D page
2017-10-20 22:01:45 +02:00
Austen McRae f45d1ee80a Fix minor typo in Kinematic Character 2D page
Just a small typo fix :)
2017-10-20 12:55:20 -07:00
Rémi Verschelde 0950a88a65 Merge pull request #505 from TheRealMisterFix/patch-1
Update scenes_and_nodes.rst - Clarification
2017-10-12 17:20:28 +02:00
David Fix 252dd4326a Update scenes_and_nodes.rst - Clarification
The Control node was not open by default when I ran through this tutorial, so I made small changes to clarify this.
2017-10-03 23:17:37 -04:00
Rémi Verschelde 53517d1d21 classref: Sync with current 2.1 source 2017-09-06 14:47:12 +02:00
Rémi Verschelde 6c9e0a39f0 Merge pull request #451 from toger5/patch-2
Update doc generation command line to new style
2017-08-31 19:13:53 +02:00
Timo 79d0580805 Update doc generation command line to new style 2017-08-31 19:11:16 +02:00
Rémi Verschelde ab67772189 Merge pull request #426 from Nibodhika/patch-1
Last line gets read twice
2017-08-18 21:54:50 +02:00
Julian Murgia a376bdae05 Merge pull request #442 from jcs224/patch-1
Grammar fix
2017-08-16 09:48:33 +02:00
Joe Sweeney 45ee501a20 Grammar fix
Changed "really bad" to "really badly". Should use adverb instead of adjective.
2017-08-15 16:55:52 -06:00
Rémi Verschelde 5e276c1ce8 Merge pull request #433 from Noshyaar/patch-2
[2.1] Simple2DGame: fix typo 'pad' to 'ball'
2017-08-01 22:02:06 +02:00
Poommetee Ketson 1f3d1b8dcb Simple2DGame: fix typo 'pad' to 'ball' 2017-08-02 01:03:18 +07:00
Nibodhika 9a3f273172 Last line gets read twice
because savegame.get_line() will consume the line, but eof_reached will only be reached when trying to read the next line the code inside the while gets called twice for the last line.

Which wouldn't be a problem, except currentline.parse_json(null) does not alter currentline.

I think an even better way would be

```
while (!savegame.eof_reached()):
    var line = savegame.get_line()
    if not line:
        continue

     currentline.parse_json(line)
     # Remaining code here
```
2017-07-30 12:05:47 -03:00
Rémi Verschelde 7a42f0e184 Merge pull request #424 from santouits/kinematic-stable
correct link to kinematic demo for the stable docs
2017-07-27 12:45:23 +02:00
santouits 23415b8635 correct link to kinematic demo for the stable docs 2017-07-27 13:28:10 +03:00
Rémi Verschelde 02d55cc95f Merge pull request #413 from Dillybob92/patch-3
Update background_loading.rst
2017-07-17 00:14:45 +02:00
Dillybob92 bcc8fdc24d Update background_loading.rst
get_progress, not get_process :P
2017-07-16 12:36:05 -07:00
Rémi Verschelde f47d3e2a1d Merge pull request #411 from eska014/web-doc-2.1
HTML5 doc for 2.1
2017-07-16 15:47:16 +02:00
L. Krause 452e977e2b Update and clarify HTML5 doc
(cherry picked from commit 734db354d1)
2017-07-16 15:38:19 +02:00
Rémi Verschelde c221f40b18 Contributing: Add docs about code style and clang-format
(cherry picked from commit 109adb657f)
2017-07-13 21:22:12 +02:00
ravenblackx 0daeffdffc Mention flipping and rotation
Add a paragraph about flipping and rotation in using_tilemaps.rst.
(The intuitive way to do this as a new user is flipping sprites in the tileset, which doesn't work.)

(cherry picked from commit fbc59870fb)
2017-07-13 17:32:32 +02:00
Carlo Cabanilla e1cd970641 fix broken link to project organization
(cherry picked from commit 35c92cfd0e)
2017-07-13 17:31:26 +02:00
Julian Murgia 7e4dffcaee Added a better description for types operations (floats, integers), fixes #377
(cherry picked from commit af28c7515e)
2017-07-13 17:31:14 +02:00
Julian Murgia 85509f3791 Added precisions in Xcode section of setting IDE, fixes #345
(cherry picked from commit 8658d5a719)
2017-07-13 17:30:35 +02:00
Rémi Verschelde 101a845fd8 Enhance build instructions for OpenBSD
Fixes #363.

(cherry picked from commit 6239587813)
2017-07-13 17:30:26 +02:00
Markus Jylhänkangas 0e22bc2fe9 Update compiling_for_x11.rst
Add openSUSE oneliner and sort oneliners alphabetically.

(cherry picked from commit 9e579ec262)
2017-07-13 17:30:20 +02:00
Rémi Verschelde 15101276d1 Explain what DAE stands for
Superseded #366.

(cherry picked from commit bdf55bf148)
2017-07-13 17:28:56 +02:00
noideatbh 33a332639f Small fixes to the Instancing doc (#389)
* Minor grammar corrections
* Added new revert button image

(cherry picked from commit 9a51e18846)
2017-07-13 17:28:43 +02:00
noideatbh 2937d9ff43 Minor grammar corrections
Just a few words that might need to be corrected.

(cherry picked from commit 85dff31706)
2017-07-13 17:28:34 +02:00
Andreas Haas 3904b8feac InputEvent tutorial: Recommend Input instead of MainLoop for parsing events.
(cherry picked from commit 0ca7e06f36)
2017-07-13 17:27:39 +02:00
Rémi Verschelde 5fbdf848d1 Contributing: improve bugsquad and docs guidelines
(cherry picked from commit f24e9803cd)
2017-07-13 17:27:37 +02:00
tlahn 7dcc48370a Minor wording change
(cherry picked from commit 7749ff8c5f)
2017-07-13 17:26:33 +02:00
Rémi Verschelde 868b4ee869 Fix links in PR workflow doc
(cherry picked from commit fde71a5071)
2017-07-13 17:26:25 +02:00
Rémi Verschelde 1ea4364765 Add contributing docs on the PR workflow
(cherry picked from commit 84538955e0)
2017-07-13 17:26:19 +02:00
Rémi Verschelde 6a65a6b1ec Add page about the different ways to contribute
(cherry picked from commit 1a0d57824d)
2017-07-13 17:26:13 +02:00
Cliff Rogers 8008739f16 Fix typo in UWP docs (#404) 2017-07-06 08:05:49 +02:00
Rémi Verschelde 1ae3ebc9d2 Merge pull request #402 from medavox/patch-2
small grammar fixes
2017-07-05 07:41:50 +02:00
Adam Howard 99ce26e375 small grammar fixes 2017-07-04 23:54:56 +01:00
demipixel 544c06bd5e Specify location of "Install Export Templates" 2017-06-27 08:55:09 +02:00
Rémi Verschelde 9e4ba2bdad Merge pull request #397 from DigbyMW/patch-1
Fix typo
2017-06-24 07:41:21 +02:00
DigbyMW 105472422f Fix typo 2017-06-23 18:47:10 +01:00
Rémi Verschelde f95738c54a classref: Sync with 2.1 branch, adds signal descriptions 2017-06-17 14:07:36 +02:00
Rémi Verschelde 3aa2d5846e Merge pull request #393 from RandomShaper/patch-7
Document new AT_LIGHT_PASS builtin
2017-06-15 14:42:47 +02:00
Pedro J. Estébanez 5c1831ef7d Document new AT_LIGHT_PASS builtin 2017-06-15 14:36:25 +02:00