Rémi Verschelde
a0e32ac017
Fix mixed use of tabs and spaces in indented blocks
...
4-space is our convention for indented blocks and should be used consistently.
The only exception is for C++ code which is tab-indented, as the engine code.
2018-11-20 11:02:11 +01:00
Karen S
6274c53536
Add android_add_asset_dir doc to "Creating Android modules" ( #1894 )
2018-11-20 10:10:45 +01:00
Rémi Verschelde
d146b1c13a
Merge pull request #1890 from mijo-gracanin/master
...
Add instructions for configuring VS Code
2018-11-20 10:00:18 +01:00
Rémi Verschelde
3a6fa1507c
Merge pull request #1892 from Calinou/capitalize-godot
...
Capitalize all instances of Godot (except the binary name)
2018-11-20 09:55:17 +01:00
Michael Alexsander Silva Dias
2d019998b5
Fix small problems in the "External libraries" and "Custom modules" pages
2018-11-15 14:06:32 -02:00
m
affa0f3542
Added example for binding to external C++ libary #513
...
Updated the custom C++ modules documentation with an example of binding to an external C++ library, using the Festival text-to-speech library.
2018-11-10 19:15:12 -05:00
mgracanin
b826cd9606
Add instructions for configuring VS Code
2018-10-31 23:50:03 +01:00
Hugo Locurcio
adf3cb915a
Capitalize all instances of Godot (except the binary name)
2018-10-27 21:01:11 +02:00
Max Hilbrunner
079527b9d3
Merge pull request #1854 from LittleWhite-tb/indent-style-qt-creator
...
Qt Creator configuration to follow Godot's coding style
2018-10-21 21:44:50 +02:00
Max Hilbrunner
143305b108
Merge pull request #1863 from LittleWhite-tb/kdevelop-configuration-fixes
...
Fixes and improvement to the KDevelop documentation
2018-10-21 21:44:30 +02:00
Alexandre LittleWhite Laurent
430f6ef871
Fixes and improvement to the KDevelop documentation
2018-10-16 22:16:13 +02:00
Alexandre LittleWhite Laurent
0f69d5f0e1
New KDevelop screenshots
2018-10-16 22:02:20 +02:00
Alexandre LittleWhite Laurent
140a10d720
Added a section to explain how to configure Qt Creator to follow Godot's code style
2018-10-15 22:38:47 +02:00
Broc Weselmann
c3ddfbfbdf
Updated DVector to PoolVector
...
fixes #1678
2018-10-08 17:09:49 -04:00
kellams
65a5860495
Fixed usage of -path flag when debugging ( #1803 )
...
* Fixed usage of -path flag when debugging
2018-10-07 00:12:30 +02:00
Hugo Locurcio
4741f45ddb
Rename all occurrences of Mac OS X to macOS
2018-10-06 14:42:49 +02:00
Rémi Verschelde
81e1d6da60
Fix core includes in C++ modules tutorial
...
Fixes #1787 .
2018-10-03 15:34:00 +02:00
FeralBytes
58996e0ba7
Fix the Java Singleton example so it works
...
Reference Issue #1744
2018-09-28 20:24:07 -08:00
hungrymonkey
dfc35f19a7
Update custom_godot_servers.rst
...
"but" doesn't seem correct in this context. I wonder how I missed this word.
Before: It is possible to emit signals to GDScript but calling the GDScript dummy object.
After: It is possible to emit signals to GDScript by calling the GDScript dummy object.
2018-09-12 14:36:38 -07:00
Rémi Verschelde
e29dc58cbb
Heading capitalization fixes + misc edits
2018-08-23 10:57:22 +02:00
Chris Bradfield
da0383bd66
Fix broken link
2018-08-21 14:26:35 -07:00
FeralBytes
e4c047cbcf
Update min and target sdk numbers
2018-08-17 10:01:32 -08:00
Ralph Minderhoud
2ff103e117
Update config example function signature
...
The previous example caused godot to display the following warning:
`Warning: module 'module' uses a deprecated 'can_build' signature in its config.py file, it should be 'can_build(env, platform)'.`
2018-06-30 16:43:39 -05:00
Michael Alexsander Silva Dias
26bd899dad
Fix section links in the 'Configuring an IDE' page
2018-06-21 18:32:43 -03:00
Max Hilbrunner
dce48d0e7b
Merge pull request #1531 from akien-mga/ide-config
...
Configuring an IDE: Add intro and details for scons path with Qt Creator
2018-06-21 18:54:10 +02:00
Hugo Locurcio
b2eb5ed8d4
Improve Custom Godot servers page and fix typos
...
This also makes the example code conform to the engine code style.
2018-06-20 20:24:29 +02:00
Rémi Verschelde
5bbda9faf0
Configuring an IDE: Add intro and details for scons path with Qt Creator
...
Also moved Qt Creator up as it's the IDE used by most core developers.
Some users saw Kdevelop first and expected it to be the recommended one.
2018-06-20 19:00:08 +02:00
None
f064e4f7a7
Fix 404s, some redirects and some broken links.
2018-05-30 16:49:21 -07:00
Michele Valente
e8384b72f9
Added tip about updating source files in QTCreator
...
Also added some screenshots fort the "Importing the project" section
Since I was doing these changes I updated also the following:
- added images for the build and run steps for Qt Creator (also changed
one line to match the screenshot taken on Linux in this case)
- fixed typo It's called "Qt Creator" not "QtCreator" althought packages
and launchers sometimes call it like that (I tend to make that mistake
too).
2018-05-20 22:00:38 +02:00
mhilbrunner
3fa4cc3355
Reinstate fun
2018-05-08 08:36:51 +02:00
mhilbrunner
f215a0cf26
Proofing/review: Remove filler words, adhere to style guide
2018-05-06 05:23:37 +02:00
cheeseburger
144249d942
Fixed hyperlinks
...
pervious commits were missing a _doc header
:ref: doc_guide instead of guide
2018-04-30 16:26:50 -07:00
hungrymonkey
d399a7a1ff
init commit custom godot servers, new file ( #1400 )
...
* custom godot servers, new tutorial
2018-04-30 16:40:22 +02:00
cheeseburger
e54dd281af
added deconstructor to remove dynmically allocated memeory
...
closes #1120
2018-04-25 09:37:34 -07:00
Max Hilbrunner
949b3b1343
Update Creating Android Modules to 3.0
2018-03-30 22:57:03 +02:00
Poommetee Ketson
2cf560bc8a
Fix typos with codespell
2018-03-29 12:38:45 +07:00
Max Hilbrunner
74cf0baaf0
Config. an IDE for engine dev: Remove empty TODOs
2018-03-12 22:51:20 +01:00
hungrymonkey
3c747d963b
Added custom format loader guide ( #1193 )
2018-03-03 02:46:45 +01:00
Rémi Verschelde
8e7f5979c8
Merge pull request #1114 from Simonah88/master
...
Fixed build command for shared library summator
2018-02-13 23:40:15 +01:00
Nathan Lovato
cee560fca7
Merge pull request #1047 from hungrymonkey/add_audiostream
...
Created an inital guide on how to make audiostreams
2018-02-08 15:30:16 +01:00
cheeseburger
8e5be124df
added mhilbrunner suggested changes
...
fix audiostream
change ; to : for list of items
change doc to this guide
2018-02-07 16:41:21 -08:00
Simon
33ba2003de
Fixed build command for libsummator
2018-02-07 08:56:48 -08:00
Max Hilbrunner
cabf76f74d
Custom modules in CPP: Remove mention of Bullet
...
Remove Bullet from list of external third-party libraries that may be interesting to write bindings for now that it's integrated, also correct PhysX spelling
2018-02-01 02:51:55 +01:00
Michael Alexsander Silva Dias
8f3cb902e8
Various small fixes for the docs.
2018-01-29 21:00:02 -02:00
cheeseburger
8d13d962f2
Added an inital guide on how to create an audiostream.
...
change creating to create
2018-01-28 23:33:51 -08:00
Emerson MX
1dece629ed
Rename OBJ_TYPE to GDCLASS
2018-01-25 00:17:25 -03:00
Andrii Doroshenko (Xrayez)
0ff5c10e88
Add section about writing custom documentation for modules
2018-01-21 19:44:06 +02:00
Lexx
c463fb6b3c
Fix wording variant doc ( #940 )
...
* fix wording variant doc
* Update variant_class.rst
* Update variant_class.rst
2018-01-14 12:20:03 +01:00
Maksymilian Świąć
d70d9dd84e
Update index.rst
2018-01-05 10:22:09 +01:00
Maksymilian Świąć
748745afca
Change ambiguous section titles
...
Closes #933 and #63
2018-01-05 09:57:21 +01:00