Commit Graph
46 Commits
Author SHA1 Message Date
blurrred 77f2c16788 Grammar fix
a Area -> an Area (x2)
2018-11-30 15:25:59 -06:00
Rémi Verschelde 4ef06a4135 Removing trailing whitespace
With `sed -i $(rg -l '[[:blank:]]*$' -g'!classes') -e 's/[[:blank:]]*$//g'`
2018-11-20 11:08:34 +01:00
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
M. Huri 034bb63e84 Repaired mistyped of 'its'. 2018-10-19 19:39:49 +07:00
Frido 70b7e904f6 Fixed more typos in FPS tutorial 2018-10-16 22:35:03 +02:00
Frido 958989dba3 Fixed a few typos in FPS tutorial 2018-10-16 22:28:43 +02:00
Hugo Locurcio 854eb9523c Fix typo in FPS tutorial part 1 (#1746)
This closes #1739.
2018-09-20 13:22:36 +02:00
Nathan Lovato d3e0b40a6f Merge pull request #1630 from FeralBytes/patch-4
Ensure GRAVITY is spelled out throughout Tutorial
2018-08-11 14:26:02 +09:00
Nathan Lovato 25b3e9de77 Merge pull request #1669 from ntfwc/ntfwc-fps3-names
Fixed some referenced names in FPS Tutorial Part 3
2018-08-08 14:34:14 +09:00
ntfwc 653ce49d2d Fixed some names in FPS Tutorial Part 3 2018-08-06 21:52:08 -05:00
ntfwc 00634497c9 Fixed some typos and grammar issues in FPS tutorial 2 2018-08-06 21:32:00 -05:00
FeralBytes 47aa4cfe04 Ensure GRAVITY is spelled out throughout Tutorial
Fixes #1628
2018-07-31 06:08:55 -08:00
Michael Alexsander Silva Dias c7c102dff5 Fix code blocks in the sixth part of the FPS tutorial 2018-07-22 18:53:39 -03:00
Max Hilbrunner 26cc612925 Merge pull request #1595 from rcorre/master
Fix a few typos in part 1 of the FPS tutorial.
2018-07-22 16:37:33 +02:00
Max Hilbrunner 21390a011e Merge pull request #1590 from YeldhamDev/fps_tutorial_tabs_fix
Fixed controller tabs in the fourth part of the FPS tutorial
2018-07-22 16:36:58 +02:00
Max Hilbrunner 8d7bdddeea Merge pull request #1591 from Socterean/master
FPS Tutorial Part05-06 general phrase corrections
2018-07-22 16:35:57 +02:00
Ryan Roden-Corrent 3a40ef5be7 Fix a few typos in part 1 of the FPS tutorial.
For "Let's look is ``process_movement`` next", the following text is
actually referring to "process_input", and even says "and now back to
process_input" later in the same section.
2018-07-20 07:57:26 -04:00
Socterean e68200236f FPS Tutorial Part05-06 general phrase corrections
Complete Part05 general phrase corrections

Updated the line 722 in Turret.gd script

Updated a line to be the same as in the current master branch in the Turret.gd script. Before I just pasted my code from the editor following the tutorial from the website witch has an outdated line of code

Removed an empty line inserted by mistake

Part06 partial phrase corrections

Part05 fixed a typo in the corrections

Complete Part06 general phrase corrections

Changed line 488 to be more clear for beginners

I changed the line 488 from "if ray_result:" to "if ray_result != null" so it should be more in line with the code standards and to be more easy to understand by the new users learning how to code.
2018-07-20 03:51:42 +03:00
Michael Alexsander Silva Dias 5dbf3f2979 Fixed controller tabs in the fourth part of the FPS tutorial. 2018-07-13 16:33:55 -03:00
Noah Beard d3ab23348d Synced FPS tutorial zip files with the change from PR #1580 2018-07-12 14:17:50 -04:00
Socterean cebf813cd0 FPS Tutorial Part02-04 general phrase corrections (#1560)
* FPS Tutorial Part02 general phrase corrections

* FPS Tutorial Part03 minor phrase corrections

Also I have fixed the audio name convention so now the sound will play as intended.

* FPS Tutorial Part04 minor phrase corrections

* Changes to the joypad input handling  to include the PS controller

I have made some changes so the tutorial works for both the Xbox controller and the Playstation controller. However I have not managed to find a solution to include them in the same script so now it works just with one of them or the other.
2018-07-12 04:56:57 +02:00
Max Hilbrunner 7088594429 Merge pull request #1580 from skyace65/FPSTutorialFix
Fix FPS Tutorial move_and_slide
2018-07-10 14:08:13 +02:00
NateRiz bb839c644c Typos and Grammar fixes for 3D FPS Tutorial (#1565)
* typos in fps_tut part_one

* typos/grammar for 3d_fps part_two
2018-07-10 14:01:48 +02:00
Matthew Ehrenhofler fad1c8397b Fix FPS Tutorial move_and_slide 2018-07-08 21:44:44 -04:00
Yuri Chornoivan be6ef615b1 Fix minor typos 2018-07-01 15:50:18 +02:00
TwistedTwigleg af8de6f73f FPS RigidBody Fix (#1500)
* Changed the wording in the first three parts of the FPS tutorial to
not use "we" when refering to the player.

Changed the name of variables outside of a function to "class variables"
(instead of "global variables", which was less accurate and can be confusing)

Changed the code in RigidBody_hit_test.gd to take bullet rotation into account.

* Changed part 4 and part 5 of the FPS tutorial to not use "we" as often, and not to use "we" for referring to scripts
and other objects.

Changed some of the code to reflect changes in RigidBody_hit_test.gd.

Fixed typos and other small changes.

* Changed part 6 of the FPS tutorial to not use "we" when referring to scripts and other objects.
Fixed a couple minor things in part 2.
Updated all of the zip files to reflect the changed code in RigidBody_hit_test.gd.
2018-06-07 01:37:01 +02:00
None f064e4f7a7 Fix 404s, some redirects and some broken links. 2018-05-30 16:49:21 -07:00
keltwookie 00f14cadbc Minor typos fixing (#1459)
* fix minor typos
2018-05-21 05:35:43 +02:00
mhilbrunner f215a0cf26 Proofing/review: Remove filler words, adhere to style guide 2018-05-06 05:23:37 +02:00
TwistedTwigleg 4c74b8198b Synced the ZIP files so they are up to date with master.
Changed some of the wording in part 2 so it is less vague
and (hopefully) easier to understand. Added a bit explaining how blend time works.
2018-05-01 12:26:13 -04:00
Michael Labbé 2e4d341f75 typo fix spriting -> sprinting 2018-04-29 08:17:24 -07:00
Poommetee Ketson 3d767f7c20 FPS/Part1: Fix missing param in move_and_slide 2018-04-24 23:14:49 +07:00
Poommetee Ketson 23d3521cb8 FPS/Part1: fix GDScript missing char 2018-04-23 00:40:22 +07:00
Noah Beard 0714eb1b31 Fixed a couple things I missed in part 6 of the FPS tutorial 2018-04-21 16:46:08 -04:00
TwistedTwigleg 627078c325 FPS tutorial remaster (#1357)
* Started remastering first two parts of the FPS tutorial.

Now both parts follow a consistant coding style,
have up to date Zip files for every part.

* Finished the first draft for part 2, and did some edits to part 1.

* Finished writing the first draft for part 3. (Still needs editing)

I also added a blank page for part 5 and added it to the index.

* Updated and fixed a few things in Part 3

* Removed the old part 4 of the FPS tutorial and replaced it with a new part!
(Which would have been part 5 had part 4 not been removed)

* Added part 5 of the FPS tutorial.
Made a few changes to parts 4 and 1.
Added a template/overview of what to write in part 6.

* Finished part 6 of the FPS tutorial.
Now every part of the FPS tutorial is written out!

Made some minor edits to part 5.

* Added all of the zip files for the first three parts of the FPS tutorial.
Updated/Redid all of the pictures for the first three parts as well.
Fixed a few minor issues/inconsistencies in the written material.

* Added all of the zip files for the last three parts of the FPS tutorial.
Updated/Redid all of the pictures for the last three parts as well.
Fixed a few minor issues/inconsistencies in the written material.
Updated the blender files zip.

* Did some editing on parts 3 through 5 on the FPS tutorial.
2018-04-21 17:42:58 +02:00
Yuri Chornoivan 11d534015d Fix minor typos 2018-04-18 21:44:15 +03:00
Drambique 983edbe274 revisions 2018-04-07 03:46:19 -04:00
Michael Alexsander Silva Dias 2c8f669d65 Fixed small typo in the part one of the FPS tutorial. 2018-04-04 21:35:55 -03:00
Drambique f2afb18dbd Small typo fix 2018-03-31 23:30:18 -04:00
Poommetee Ketson 2cf560bc8a Fix typos with codespell 2018-03-29 12:38:45 +07:00
Noah Beard b586ffccf8 Added part 4 of the FPS tutorial 2018-03-09 17:17:39 -05:00
LAT_Rio 9d6b4e1091 Updated FPS tutorial to 3.0 (#1202)
* Updated script to 3.0 version

Use '$' instead of 'get_node'.
Functions '_process', _physics_process', '_input' and other similar functions will be detected automatically since 3.0.
2018-03-03 10:33:16 +01:00
Max Hilbrunner 6d71b8788b Optimize Godot_FPS_Starter.zip: 75 to 6mb 2018-02-26 08:19:35 +01:00
Max Hilbrunner cc59d83b67 Optimize Godot_FPS_Finished.zip: 75 to 6mb 2018-02-26 08:13:37 +01:00
TwistedTwigleg 64e4bb3558 Changed the FPS tutorial to reflect the recent changes in the project
and added a warning about the peformance of Test_level.
2018-02-25 12:39:30 -05:00
TwistedTwigleg c33d9e744c Added a FPS (First person shooter) game tutorial in three parts.
* The first part covers making a first person character.
* The second part covers adding weapons/guns to the character built in part one.
* The third part adds ammo to the guns and sounds for when the player fires.
2018-02-22 13:48:08 -05:00