Skip to content

Commit 5c054c4

Browse files
committed
Updated readme
1 parent 5d76535 commit 5c054c4

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,6 @@ This pattern is almost the same as the [Observer](#3-observer) pattern. The only
344344

345345
Combine the [Command](#1-command) pattern with a C#'s built-in queue, which is why this pattern is sometimes known as a **Command Queue**. In the Update method you pick the first Command in the queue and run it while measuring time. To measure time you can use System.Diagnostics.Stopwatch. If you have time to spare, you run the next Command, and so on until you are out of time. How much time you can spend on the Event Queue each update depends on the game, so you have to experiment.
346346

347-
Credit to [masoudarvishian](https://github.com/masoudarvishian) for implementing this pattern!
348-
349347
**When is it useful?**
350348

351349
* When you after an event will load an asset. This may take time, so if you want to play a sound when clicking a button, the game may freeze because it has to load the sound. A better way is to play the sound some frames after the click.
@@ -557,6 +555,13 @@ Define a template method in the parent class which consists of calling several m
557555

558556

559557

558+
# Credits
559+
560+
* [masoudarvishian](https://github.com/masoudarvishian) for implementing Event Queue pattern, Service Locator pattern, and bug fixing
561+
* [VladimirMirMir](https://github.com/VladimirMirMir) for bug fixing
562+
563+
564+
560565
# Socials
561566

562567
* Visit my [Portfolio](https://www.habrador.com)

UserSettings/EditorUserSettings.asset

+12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ EditorUserSettings:
88
RecentlyUsedScenePath-0:
99
value: 224247031146466b0c1a1827022d4c5f435958192526213c283d123dadf33d36e5eb33fde8347129370bfb25
1010
flags: 0
11+
RecentlyUsedScenePath-1:
12+
value: 224247031146466b0c1a1827022d4c5f4159580e233d243c28693f26e4e6312aadc437ffe2753b332c00e339443c1439f40f1b4bf50a1c0e5f1bf30705e6
13+
flags: 0
14+
RecentlyUsedScenePath-2:
15+
value: 224247031146466b0c1a1827022d4c5f40595819382932356204183df7af272ce3f333a4ea3f31297717e1351027
16+
flags: 0
17+
RecentlyUsedScenePath-3:
18+
value: 224247031146466b0c1a1827022d4c5f4743566a0f272b3d2c271973d3f5312de7a77eccf13f31287933fa39113b4870d1050406f7050e3a040be80b22fc151d148b0dcb13dc06
19+
flags: 0
20+
RecentlyUsedScenePath-4:
21+
value: 224247031146466b0c1a1827022d4c5f4742566a1f2d3426242a1873ceef3739f6e824a9af1b31332d0aea2e44170c2ffe0f040ef81f0b1f1801f3475ecc150107cc1bc036c71c1ddf160efdce18dfe69bc3dae3ccf2
22+
flags: 0
1123
vcSharedLogLevel:
1224
value: 0d5e400f0650
1325
flags: 0

0 commit comments

Comments
 (0)