Commit Graph

43 Commits

Author SHA1 Message Date
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
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
Rémi Verschelde
f233245faa Merge pull request #939 from mhilbrunner/patch-7
Variant class (CPP): Update COW info, closes #938
2018-01-03 17:50:52 +01:00
Rémi Verschelde
97a3b83f7a Merge pull request #928 from hungrymonkey/fix_ref_bug
Fixes a bug in the example code in object type. Ref<MyReference> myre…
2018-01-03 11:26:37 +01:00
Max Hilbrunner
8b8b306f5e Variant class (CPP): Update COW info, closes #938 2018-01-02 22:45:44 +01:00
Hugo Locurcio
ee7849d180 Update build instructions to mention support for Python 3.5 and later
- Fix grammar and wording in many areas of the documentation
2017-12-30 14:18:40 +01:00
cheeseburger
3d603d50d8 Fixes a bug in the example code in object type. Ref<MyReference> myref = Ref<MyReference>(memnew(MyReference));
The statement is a compile error which emits  use of overloaded operator '=' is ambiguous (with operand types 'Ref<FuncRef>' and 'FuncRef *')

This commit uses neikeq suggestion of Ref<MyReference> myref(memnew(MyReference));

Fixes #506
2017-12-28 14:35:38 -08:00
Rémi Verschelde
060d2bd234 Merge pull request #561 from cooperra/specially-vs-especially
Proofreading: Change most usages of "specially" to "especially"
2017-11-01 08:02:49 +01:00
Athomield
b43d148e81 Fixed a typo in the IDE configuration docs 2017-10-29 19:58:33 +01:00
Robbie Cooper
51ab7b8795 Proofreading: Change most usages of "specially" to "especially"
The word "specially" was routinely used where "especially" fits better (imo).

The following commands were used, followed by manually proofreading each case.

find . -type f -exec sed 's/Specially/Especially/g' -i'' {} +
find . -type f -exec sed 's/specially/especially/g' -i'' {} +
find . -type f -exec sed 's/eespecially/especially/g' -i'' {} +
find . -type f -exec sed 's/Eespecially/Especially/g' -i'' {} +
2017-10-27 23:30:45 -04:00
Maksymilian Świąć
8496ceb472 Update two outdated statements in the modules and plugins docs (#521)
* Remove the 2.1 warning wrt plugins

* More than 2 modules exist now
2017-10-15 20:16:34 +02:00
Rémi Verschelde
786c89923d Move downloadable files to files subfolders next to each doc page 2017-10-14 14:41:44 +02:00
Rémi Verschelde
7f819ed873 Move images to subfolders next to each doc page 2017-10-14 14:41:44 +02:00
Tyler Yocolano
e0769435ba The function in ClassDB is register_class not register_types
The function in ClassDB is register_class not register_types
2017-07-18 07:58:42 +02:00
Rémi Verschelde
5aceaeb86d Fix changes after ObjectTypeDB -> ClassDB renaming 2017-07-04 13:31:19 +02:00
Julian Murgia
8658d5a719 Added precisions in Xcode section of setting IDE, fixes #345 2017-06-27 13:28:09 +02:00
Poommetee Ketson
41869fd2b3 CPPObject: update ClassDB/macros' name 2017-05-23 13:25:40 +07:00
Poommetee Ketson
08ba9d2212 CustomModule: update example to use ClassDB 2017-05-22 04:52:38 +07:00
ssj71
447b439db5 examples for custom module SCsub
I needed to add multiple files and include paths and it took me a bit
of digging to figure out how to do it. Hopefully this will help the next guy.
2017-04-04 07:53:07 +02:00
Rémi Verschelde
fcbab02811 Add toctrees for new repo organization
Also renamed Getting started back to Step by step as requested by reduz.
2017-04-03 23:41:35 +02:00
Julian Murgia
b408bdb918 Revamping of the docs organisation for a more coherent TOC
Only the pages were moved so far and some empty ones created,
the up-to-date toctrees come in the next commit.
2017-04-03 23:23:31 +02:00