felecs 5.0.0 → 5.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.mdown +42 -32
- data/Gemfile.lock +1 -1
- data/README.mdown +27 -0
- data/docs/FelECS/ComponentManager.html +1 -1
- data/docs/FelECS/Components.html +1 -1
- data/docs/FelECS/Entities.html +144 -1
- data/docs/FelECS/Order.html +1 -1
- data/docs/FelECS/Scenes.html +1 -1
- data/docs/FelECS/Stage.html +1 -1
- data/docs/FelECS/Systems.html +1 -1
- data/docs/FelECS.html +1 -1
- data/docs/_index.html +1 -1
- data/docs/file.README.html +1 -1
- data/docs/index.html +1 -1
- data/docs/method_list.html +30 -22
- data/docs/top-level-namespace.html +1 -1
- data/lib/felecs/entity_manager.rb +33 -0
- data/lib/felecs/version.rb +1 -1
- data/mrbgem/mrblib/felecs.rb +34 -1
- metadata +2 -15
- data/docs/CNAME +0 -1
- data/docs/FelFlame/ComponentManager.html +0 -1239
- data/docs/FelFlame/Components.html +0 -333
- data/docs/FelFlame/Entities.html +0 -792
- data/docs/FelFlame/Helper/ComponentManager.html +0 -1627
- data/docs/FelFlame/Helper.html +0 -142
- data/docs/FelFlame/Order.html +0 -251
- data/docs/FelFlame/Scenes.html +0 -765
- data/docs/FelFlame/Stage.html +0 -572
- data/docs/FelFlame/Systems.html +0 -1505
- data/docs/FelFlame.html +0 -319
- data/docs/Felflame_.html +0 -143
- data/docs/file.version.html +0 -74
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c8b3f2959b53795a1f59252e2801373692cc1d8d509f21aea2ea35db88cfe20
|
4
|
+
data.tar.gz: ba3692376b328c4198f800ff7dae56db5657445d20595425b260ae00276171ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a205bcc2245e5e634fe5aea70d7e71b2056d0284ec87692b1b1623ef90b83d47df04edecf697b7e59dda1d3a3c1895e0545d2d5d46836ddc427dc1b63ced18e
|
7
|
+
data.tar.gz: 91bbce64ec64f85834092e269917a45976877eabea15a98fc9de83b08a51decc9f277f8581fc947aaeb13c2d01d2a1447c18b82c8d271bba9fe92f9a4eb7790a
|
data/CHANGELOG.mdown
CHANGED
@@ -8,6 +8,16 @@
|
|
8
8
|
![Deprecated](https://img.shields.io/badge/-Deprecated-orange)
|
9
9
|
![Removed](https://img.shields.io/badge/-Removed-red)
|
10
10
|
|
11
|
+
|
12
|
+
## [5.0.1](https://github.com/realtradam/FelFlame/releases/tag/5.0.1) - 2022-02-03
|
13
|
+
![Added](https://img.shields.io/badge/-Added-brightgreen)
|
14
|
+
- Added a method to the Entity Manager which allows grouping entities by components and then execute a block for each one.
|
15
|
+
```ruby
|
16
|
+
FelECS::Entities.group(@component_manager_one, @component_manager_two).do |cmp1, cmp2, ent|
|
17
|
+
# do stuff with the components and entity
|
18
|
+
end
|
19
|
+
```
|
20
|
+
|
11
21
|
## [5.0.0](https://github.com/realtradam/FelFlame/releases/tag/5.0.0) - 2022-02-02
|
12
22
|
![Changed](https://img.shields.io/badge/-Changed-yellow)
|
13
23
|
- Renamed to FelECS
|
@@ -27,54 +37,54 @@
|
|
27
37
|
- Various arrays are automatically compacted
|
28
38
|
|
29
39
|
![Added](https://img.shields.io/badge/-Added-brightgreen)
|
30
|
-
- Classes and Modules which used a data array now have the entire set of array methods available to their respective Classes and Modules
|
40
|
+
- Classes and Modules which used a data array now have the entire set of array methods available to their respective Classes and Modules
|
31
41
|
- Convenience methods for accessing a single entity in a component(`@component.entity`) and accessing a single entity in a component(`@entity.component[@component_manager]`)
|
32
|
-
- `FelFlame::Order` class which can set the order of your Scenes and Systems
|
42
|
+
- `FelFlame::Order` class which can set the order of your Scenes and Systems
|
33
43
|
|
34
|
-
![Fixed](https://img.shields.io/badge/-Fixed-blue)
|
35
|
-
- Replaced all instances of `sort_by!` with `sort_by` for compatibility with mruby
|
36
|
-
- Minor optimizations such as less array duplication
|
44
|
+
![Fixed](https://img.shields.io/badge/-Fixed-blue)
|
45
|
+
- Replaced all instances of `sort_by!` with `sort_by` for compatibility with mruby
|
46
|
+
- Minor optimizations such as less array duplication
|
37
47
|
|
38
48
|
## [3.0.0](https://github.com/realtradam/FelFlame/releases/tag/3.0.0) - 2021-07-12
|
39
|
-
![Changed](https://img.shields.io/badge/-Changed-yellow)
|
40
|
-
- The Scene alias was changed from ```FelFlame::Sce``` to ```FelFlame::Scn``` as it is more intuitive.
|
49
|
+
![Changed](https://img.shields.io/badge/-Changed-yellow)
|
50
|
+
- The Scene alias was changed from ```FelFlame::Sce``` to ```FelFlame::Scn``` as it is more intuitive.
|
41
51
|
|
42
52
|
## [2.0.0](https://github.com/realtradam/FelFlame/releases/tag/2.0.0) - 2021-07-10
|
43
|
-
![Changed](https://img.shields.io/badge/-Changed-yellow)
|
44
|
-
- Entities and Components now reference each other using the objects themselves rather then their id's
|
45
|
-
```ruby
|
53
|
+
![Changed](https://img.shields.io/badge/-Changed-yellow)
|
54
|
+
- Entities and Components now reference each other using the objects themselves rather then their id's
|
55
|
+
```ruby
|
46
56
|
# before:
|
47
|
-
@entity.components[@component_manager].each do |component_id|
|
48
|
-
|
49
|
-
end
|
57
|
+
@entity.components[@component_manager].each do |component_id|
|
58
|
+
# iterate over id's, usually would need to do a lookup to get the component itself
|
59
|
+
end
|
50
60
|
|
51
61
|
# after:
|
52
|
-
@entity.components[@component_manager].each do |component|
|
53
|
-
|
54
|
-
end
|
55
|
-
```
|
56
|
-
```ruby
|
62
|
+
@entity.components[@component_manager].each do |component|
|
63
|
+
# iterate over the components themselves! No need for lookup anymore
|
64
|
+
end
|
65
|
+
```
|
66
|
+
```ruby
|
57
67
|
# same for components referencing entities
|
58
68
|
# before:
|
59
|
-
@component.entities.each do |entity_id|
|
60
|
-
|
61
|
-
end
|
69
|
+
@component.entities.each do |entity_id|
|
70
|
+
#iterate over id's
|
71
|
+
end
|
62
72
|
|
63
73
|
# after:
|
64
|
-
@component.entities.each do |entity|
|
65
|
-
|
66
|
-
end
|
67
|
-
```
|
68
|
-
|
74
|
+
@component.entities.each do |entity|
|
75
|
+
# directly iterate over entities themselves!
|
76
|
+
end
|
77
|
+
```
|
78
|
+
|
69
79
|
|
70
80
|
## [1.0.2](https://github.com/realtradam/FelFlame/releases/tag/1.0.2) - 2021-07-09
|
71
|
-
![Fixed](https://img.shields.io/badge/-Fixed-blue)
|
72
|
-
- Stripped superflous files shrinking gem size significantly
|
81
|
+
![Fixed](https://img.shields.io/badge/-Fixed-blue)
|
82
|
+
- Stripped superflous files shrinking gem size significantly
|
73
83
|
|
74
84
|
## [1.0.1](https://github.com/realtradam/FelFlame/releases/tag/1.0.1) - 2021-07-09
|
75
|
-
![Fixed](https://img.shields.io/badge/-Fixed-blue)
|
76
|
-
- Defining attributes in components are no longer allowed to overwrite methods
|
85
|
+
![Fixed](https://img.shields.io/badge/-Fixed-blue)
|
86
|
+
- Defining attributes in components are no longer allowed to overwrite methods
|
77
87
|
|
78
88
|
## [1.0.0](https://github.com/realtradam/FelFlame/releases/tag/1.0.0) - 2021-07-09
|
79
|
-
![Added](https://img.shields.io/badge/-Added-brightgreen)
|
80
|
-
- Initial release
|
89
|
+
![Added](https://img.shields.io/badge/-Added-brightgreen)
|
90
|
+
- Initial release
|
data/Gemfile.lock
CHANGED
data/README.mdown
CHANGED
@@ -27,6 +27,7 @@
|
|
27
27
|
* [Accessing](#accessing)
|
28
28
|
* [Adding and Removing Components](#adding-and-removing-components)
|
29
29
|
* [Accessing Entities' Attached Components](#accessing-entities-attached-components)
|
30
|
+
* [Iterating Over Grouped Entities](#iterating-over-grouped-entities)
|
30
31
|
* [Deletion](#deletion)
|
31
32
|
* [Components](#components-1)
|
32
33
|
* [Creating a Component Manager](#creating-a-component-manager)
|
@@ -155,6 +156,32 @@ When Components are added to Entities, they can be accessed from the Entity. By
|
|
155
156
|
@entity.components[@component_manager] # => [@component1, @component2, @component3]
|
156
157
|
```
|
157
158
|
|
159
|
+
### Iterating Over Grouped Entities
|
160
|
+
You can execute a block for each entity that has all matching component types attached to it like so:
|
161
|
+
|
162
|
+
```ruby
|
163
|
+
FelECS::Entities.group(@component_manager_one, @component_manager_two).do |cmp1, cmp2, ent|
|
164
|
+
# do stuff with the components and entity
|
165
|
+
end
|
166
|
+
|
167
|
+
# or
|
168
|
+
|
169
|
+
FelECS::Entities.group(@mgr1, @mgr2, @mgr3, @mgr4).do |cmp1, cmp2, cmp3, cmp4, ent|
|
170
|
+
# do stuff with the components and entity
|
171
|
+
end
|
172
|
+
|
173
|
+
# or
|
174
|
+
|
175
|
+
FelECS::Entities.group(@component_manager_one).do |cmp1, ent|
|
176
|
+
# do stuff with the component and entity
|
177
|
+
end
|
178
|
+
|
179
|
+
# etc
|
180
|
+
```
|
181
|
+
|
182
|
+
You can use any number of component managers and it will only iterate over all entities that have at least all these components from these managers attached to them. The arguments in the block(the arguments surrounded by |pipes|) always correspond to each component manager passed as parameters into the group method and then followed by the entity object.
|
183
|
+
This means there will be a number of these arguments equal to the number of component managers passed into the group method plus one for the entity.
|
184
|
+
|
158
185
|
### Deletion
|
159
186
|
To have all Components from an Entity **removed** and the Entity deleted we do the following:
|
160
187
|
|
@@ -1229,7 +1229,7 @@
|
|
1229
1229
|
</div>
|
1230
1230
|
|
1231
1231
|
<div id="footer">
|
1232
|
-
Generated on
|
1232
|
+
Generated on Thu Feb 3 03:45:35 2022 by
|
1233
1233
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1234
1234
|
0.9.26 (ruby-2.7.3).
|
1235
1235
|
</div>
|
data/docs/FelECS/Components.html
CHANGED
@@ -327,7 +327,7 @@
|
|
327
327
|
</div>
|
328
328
|
|
329
329
|
<div id="footer">
|
330
|
-
Generated on
|
330
|
+
Generated on Thu Feb 3 03:45:34 2022 by
|
331
331
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
332
332
|
0.9.26 (ruby-2.7.3).
|
333
333
|
</div>
|
data/docs/FelECS/Entities.html
CHANGED
@@ -120,6 +120,39 @@
|
|
120
120
|
|
121
121
|
|
122
122
|
|
123
|
+
<h2>
|
124
|
+
Class Method Summary
|
125
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
126
|
+
</h2>
|
127
|
+
|
128
|
+
<ul class="summary">
|
129
|
+
|
130
|
+
<li class="public ">
|
131
|
+
<span class="summary_signature">
|
132
|
+
|
133
|
+
<a href="#group-class_method" title="group (class method)">.<strong>group</strong>(*component_managers, &block) ⇒ Nil </a>
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
</span>
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
<span class="summary_desc"><div class='inline'>
|
148
|
+
<p>Selects every entity that has components of they type passed into this function and then executes the code block for those components and entities.</p>
|
149
|
+
</div></span>
|
150
|
+
|
151
|
+
</li>
|
152
|
+
|
153
|
+
|
154
|
+
</ul>
|
155
|
+
|
123
156
|
<h2>
|
124
157
|
Instance Method Summary
|
125
158
|
<small><a href="#" class="summary_toggle">collapse</a></small>
|
@@ -347,6 +380,116 @@
|
|
347
380
|
</div>
|
348
381
|
|
349
382
|
|
383
|
+
<div id="class_method_details" class="method_details_list">
|
384
|
+
<h2>Class Method Details</h2>
|
385
|
+
|
386
|
+
|
387
|
+
<div class="method_details first">
|
388
|
+
<h3 class="signature first" id="group-class_method">
|
389
|
+
|
390
|
+
.<strong>group</strong>(*component_managers, &block) ⇒ <tt>Nil</tt>
|
391
|
+
|
392
|
+
|
393
|
+
|
394
|
+
|
395
|
+
|
396
|
+
</h3><div class="docstring">
|
397
|
+
<div class="discussion">
|
398
|
+
|
399
|
+
<p>Selects every entity that has components of they type passed into this function and then executes the code block for those components and entities.</p>
|
400
|
+
|
401
|
+
|
402
|
+
</div>
|
403
|
+
</div>
|
404
|
+
<div class="tags">
|
405
|
+
|
406
|
+
<p class="tag_title">Returns:</p>
|
407
|
+
<ul class="return">
|
408
|
+
|
409
|
+
<li>
|
410
|
+
|
411
|
+
|
412
|
+
<span class='type'>(<tt>Nil</tt>)</span>
|
413
|
+
|
414
|
+
|
415
|
+
|
416
|
+
</li>
|
417
|
+
|
418
|
+
</ul>
|
419
|
+
|
420
|
+
</div><table class="source_code">
|
421
|
+
<tr>
|
422
|
+
<td>
|
423
|
+
<pre class="lines">
|
424
|
+
|
425
|
+
|
426
|
+
107
|
427
|
+
108
|
428
|
+
109
|
429
|
+
110
|
430
|
+
111
|
431
|
+
112
|
432
|
+
113
|
433
|
+
114
|
434
|
+
115
|
435
|
+
116
|
436
|
+
117
|
437
|
+
118
|
438
|
+
119
|
439
|
+
120
|
440
|
+
121
|
441
|
+
122
|
442
|
+
123
|
443
|
+
124
|
444
|
+
125
|
445
|
+
126
|
446
|
+
127
|
447
|
+
128
|
448
|
+
129
|
449
|
+
130
|
450
|
+
131
|
451
|
+
132
|
452
|
+
133
|
453
|
+
134</pre>
|
454
|
+
</td>
|
455
|
+
<td>
|
456
|
+
<pre class="code"><span class="info file"># File 'lib/felecs/entity_manager.rb', line 107</span>
|
457
|
+
|
458
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_group'>group</span><span class='lparen'>(</span><span class='op'>*</span><span class='id identifier rubyid_component_managers'>component_managers</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
|
459
|
+
<span class='kw'>return</span> <span class='kw'>nil</span> <span class='kw'>if</span> <span class='id identifier rubyid_component_managers'>component_managers</span><span class='period'>.</span><span class='id identifier rubyid_empty?'>empty?</span>
|
460
|
+
<span class='kw'>if</span> <span class='id identifier rubyid_component_managers'>component_managers</span><span class='period'>.</span><span class='id identifier rubyid_length'>length</span> <span class='op'>==</span> <span class='int'>1</span>
|
461
|
+
<span class='id identifier rubyid_component_managers'>component_managers</span><span class='period'>.</span><span class='id identifier rubyid_first'>first</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_cmp'>cmp</span><span class='op'>|</span>
|
462
|
+
<span class='id identifier rubyid_block'>block</span><span class='period'>.</span><span class='id identifier rubyid_call'>call</span><span class='lparen'>(</span><span class='id identifier rubyid_cmp'>cmp</span><span class='comma'>,</span> <span class='id identifier rubyid_cmp'>cmp</span><span class='period'>.</span><span class='id identifier rubyid_entity'>entity</span><span class='rparen'>)</span>
|
463
|
+
<span class='kw'>end</span>
|
464
|
+
<span class='kw'>else</span>
|
465
|
+
<span class='id identifier rubyid_arry'>arry</span> <span class='op'>=</span> <span class='id identifier rubyid_component_managers'>component_managers</span><span class='period'>.</span><span class='id identifier rubyid_first'>first</span><span class='period'>.</span><span class='id identifier rubyid_select'>select</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_cmp'>cmp</span><span class='op'>|</span>
|
466
|
+
<span class='id identifier rubyid_ent'>ent</span> <span class='op'>=</span> <span class='id identifier rubyid_cmp'>cmp</span><span class='period'>.</span><span class='id identifier rubyid_entity'>entity</span>
|
467
|
+
<span class='id identifier rubyid_keep'>keep</span> <span class='op'>=</span> <span class='kw'>true</span>
|
468
|
+
<span class='id identifier rubyid_component_managers'>component_managers</span><span class='period'>.</span><span class='id identifier rubyid_drop'>drop</span><span class='lparen'>(</span><span class='int'>1</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_mgr'>mgr</span><span class='op'>|</span>
|
469
|
+
<span class='kw'>next</span> <span class='kw'>unless</span> <span class='id identifier rubyid_ent'>ent</span><span class='period'>.</span><span class='id identifier rubyid_components'>components</span><span class='lbracket'>[</span><span class='id identifier rubyid_mgr'>mgr</span><span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span>
|
470
|
+
<span class='id identifier rubyid_keep'>keep</span> <span class='op'>=</span> <span class='kw'>false</span>
|
471
|
+
<span class='kw'>break</span>
|
472
|
+
<span class='kw'>end</span>
|
473
|
+
<span class='id identifier rubyid_keep'>keep</span>
|
474
|
+
<span class='kw'>end</span>
|
475
|
+
<span class='id identifier rubyid_arry'>arry</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_cmp'>cmp</span><span class='op'>|</span>
|
476
|
+
<span class='id identifier rubyid_ent'>ent</span> <span class='op'>=</span> <span class='id identifier rubyid_cmp'>cmp</span><span class='period'>.</span><span class='id identifier rubyid_entity'>entity</span>
|
477
|
+
<span class='id identifier rubyid_cmp_arry'>cmp_arry</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='id identifier rubyid_cmp'>cmp</span><span class='rbracket'>]</span>
|
478
|
+
<span class='id identifier rubyid_component_managers'>component_managers</span><span class='period'>.</span><span class='id identifier rubyid_drop'>drop</span><span class='lparen'>(</span><span class='int'>1</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_cmp_mgr'>cmp_mgr</span><span class='op'>|</span>
|
479
|
+
<span class='id identifier rubyid_cmp_arry'>cmp_arry</span><span class='period'>.</span><span class='id identifier rubyid_push'>push</span> <span class='id identifier rubyid_ent'>ent</span><span class='period'>.</span><span class='id identifier rubyid_component'>component</span><span class='lbracket'>[</span><span class='id identifier rubyid_cmp_mgr'>cmp_mgr</span><span class='rbracket'>]</span>
|
480
|
+
<span class='kw'>end</span>
|
481
|
+
<span class='id identifier rubyid_block'>block</span><span class='period'>.</span><span class='id identifier rubyid_call'>call</span><span class='lparen'>(</span><span class='op'>*</span><span class='id identifier rubyid_cmp_arry'>cmp_arry</span><span class='comma'>,</span> <span class='id identifier rubyid_ent'>ent</span><span class='rparen'>)</span>
|
482
|
+
<span class='kw'>end</span>
|
483
|
+
<span class='kw'>end</span>
|
484
|
+
<span class='kw'>nil</span>
|
485
|
+
<span class='kw'>end</span></pre>
|
486
|
+
</td>
|
487
|
+
</tr>
|
488
|
+
</table>
|
489
|
+
</div>
|
490
|
+
|
491
|
+
</div>
|
492
|
+
|
350
493
|
<div id="instance_method_details" class="method_details_list">
|
351
494
|
<h2>Instance Method Details</h2>
|
352
495
|
|
@@ -782,7 +925,7 @@
|
|
782
925
|
</div>
|
783
926
|
|
784
927
|
<div id="footer">
|
785
|
-
Generated on
|
928
|
+
Generated on Thu Feb 3 03:45:34 2022 by
|
786
929
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
787
930
|
0.9.26 (ruby-2.7.3).
|
788
931
|
</div>
|
data/docs/FelECS/Order.html
CHANGED
@@ -241,7 +241,7 @@
|
|
241
241
|
</div>
|
242
242
|
|
243
243
|
<div id="footer">
|
244
|
-
Generated on
|
244
|
+
Generated on Thu Feb 3 03:45:34 2022 by
|
245
245
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
246
246
|
0.9.26 (ruby-2.7.3).
|
247
247
|
</div>
|
data/docs/FelECS/Scenes.html
CHANGED
@@ -755,7 +755,7 @@
|
|
755
755
|
</div>
|
756
756
|
|
757
757
|
<div id="footer">
|
758
|
-
Generated on
|
758
|
+
Generated on Thu Feb 3 03:45:35 2022 by
|
759
759
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
760
760
|
0.9.26 (ruby-2.7.3).
|
761
761
|
</div>
|
data/docs/FelECS/Stage.html
CHANGED
@@ -562,7 +562,7 @@
|
|
562
562
|
</div>
|
563
563
|
|
564
564
|
<div id="footer">
|
565
|
-
Generated on
|
565
|
+
Generated on Thu Feb 3 03:45:34 2022 by
|
566
566
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
567
567
|
0.9.26 (ruby-2.7.3).
|
568
568
|
</div>
|
data/docs/FelECS/Systems.html
CHANGED
@@ -1495,7 +1495,7 @@
|
|
1495
1495
|
</div>
|
1496
1496
|
|
1497
1497
|
<div id="footer">
|
1498
|
-
Generated on
|
1498
|
+
Generated on Thu Feb 3 03:45:35 2022 by
|
1499
1499
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1500
1500
|
0.9.26 (ruby-2.7.3).
|
1501
1501
|
</div>
|
data/docs/FelECS.html
CHANGED
@@ -325,7 +325,7 @@
|
|
325
325
|
</div>
|
326
326
|
|
327
327
|
<div id="footer">
|
328
|
-
Generated on
|
328
|
+
Generated on Thu Feb 3 03:45:34 2022 by
|
329
329
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
330
330
|
0.9.26 (ruby-2.7.3).
|
331
331
|
</div>
|
data/docs/_index.html
CHANGED
@@ -178,7 +178,7 @@
|
|
178
178
|
</div>
|
179
179
|
|
180
180
|
<div id="footer">
|
181
|
-
Generated on
|
181
|
+
Generated on Thu Feb 3 03:45:34 2022 by
|
182
182
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
183
183
|
0.9.26 (ruby-2.7.3).
|
184
184
|
</div>
|
data/docs/file.README.html
CHANGED
@@ -550,7 +550,7 @@ E.g priority 1 will go first, priority 2 will go second, etcetera. </p>
|
|
550
550
|
</div></div>
|
551
551
|
|
552
552
|
<div id="footer">
|
553
|
-
Generated on
|
553
|
+
Generated on Thu Feb 3 03:45:34 2022 by
|
554
554
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
555
555
|
0.9.26 (ruby-2.7.3).
|
556
556
|
</div>
|
data/docs/index.html
CHANGED
@@ -550,7 +550,7 @@ E.g priority 1 will go first, priority 2 will go second, etcetera. </p>
|
|
550
550
|
</div></div>
|
551
551
|
|
552
552
|
<div id="footer">
|
553
|
-
Generated on
|
553
|
+
Generated on Thu Feb 3 03:45:34 2022 by
|
554
554
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
555
555
|
0.9.26 (ruby-2.7.3).
|
556
556
|
</div>
|
data/docs/method_list.html
CHANGED
@@ -229,6 +229,14 @@
|
|
229
229
|
|
230
230
|
|
231
231
|
<li class="even ">
|
232
|
+
<div class="item">
|
233
|
+
<span class='object_link'><a href="FelECS/Entities.html#group-class_method" title="FelECS::Entities.group (method)">group</a></span>
|
234
|
+
<small>FelECS::Entities</small>
|
235
|
+
</div>
|
236
|
+
</li>
|
237
|
+
|
238
|
+
|
239
|
+
<li class="odd ">
|
232
240
|
<div class="item">
|
233
241
|
<span class='object_link'><a href="FelECS/Scenes.html#initialize-instance_method" title="FelECS::Scenes#initialize (method)">#initialize</a></span>
|
234
242
|
<small>FelECS::Scenes</small>
|
@@ -236,7 +244,7 @@
|
|
236
244
|
</li>
|
237
245
|
|
238
246
|
|
239
|
-
<li class="
|
247
|
+
<li class="even ">
|
240
248
|
<div class="item">
|
241
249
|
<span class='object_link'><a href="FelECS/Entities.html#initialize-instance_method" title="FelECS::Entities#initialize (method)">#initialize</a></span>
|
242
250
|
<small>FelECS::Entities</small>
|
@@ -244,7 +252,7 @@
|
|
244
252
|
</li>
|
245
253
|
|
246
254
|
|
247
|
-
<li class="
|
255
|
+
<li class="odd ">
|
248
256
|
<div class="item">
|
249
257
|
<span class='object_link'><a href="FelECS/Systems.html#initialize-instance_method" title="FelECS::Systems#initialize (method)">#initialize</a></span>
|
250
258
|
<small>FelECS::Systems</small>
|
@@ -252,7 +260,7 @@
|
|
252
260
|
</li>
|
253
261
|
|
254
262
|
|
255
|
-
<li class="
|
263
|
+
<li class="even ">
|
256
264
|
<div class="item">
|
257
265
|
<span class='object_link'><a href="FelECS/ComponentManager.html#initialize-instance_method" title="FelECS::ComponentManager#initialize (method)">#initialize</a></span>
|
258
266
|
<small>FelECS::ComponentManager</small>
|
@@ -260,7 +268,7 @@
|
|
260
268
|
</li>
|
261
269
|
|
262
270
|
|
263
|
-
<li class="
|
271
|
+
<li class="odd ">
|
264
272
|
<div class="item">
|
265
273
|
<span class='object_link'><a href="FelECS/Components.html#new-class_method" title="FelECS::Components.new (method)">new</a></span>
|
266
274
|
<small>FelECS::Components</small>
|
@@ -268,7 +276,7 @@
|
|
268
276
|
</li>
|
269
277
|
|
270
278
|
|
271
|
-
<li class="
|
279
|
+
<li class="even ">
|
272
280
|
<div class="item">
|
273
281
|
<span class='object_link'><a href="FelECS/Scenes.html#priority-instance_method" title="FelECS::Scenes#priority (method)">#priority</a></span>
|
274
282
|
<small>FelECS::Scenes</small>
|
@@ -276,7 +284,7 @@
|
|
276
284
|
</li>
|
277
285
|
|
278
286
|
|
279
|
-
<li class="
|
287
|
+
<li class="odd ">
|
280
288
|
<div class="item">
|
281
289
|
<span class='object_link'><a href="FelECS/Systems.html#priority-instance_method" title="FelECS::Systems#priority (method)">#priority</a></span>
|
282
290
|
<small>FelECS::Systems</small>
|
@@ -284,7 +292,7 @@
|
|
284
292
|
</li>
|
285
293
|
|
286
294
|
|
287
|
-
<li class="
|
295
|
+
<li class="even ">
|
288
296
|
<div class="item">
|
289
297
|
<span class='object_link'><a href="FelECS/Systems.html#redefine-instance_method" title="FelECS::Systems#redefine (method)">#redefine</a></span>
|
290
298
|
<small>FelECS::Systems</small>
|
@@ -292,7 +300,7 @@
|
|
292
300
|
</li>
|
293
301
|
|
294
302
|
|
295
|
-
<li class="
|
303
|
+
<li class="odd ">
|
296
304
|
<div class="item">
|
297
305
|
<span class='object_link'><a href="FelECS/Systems.html#removal_triggers-instance_method" title="FelECS::Systems#removal_triggers (method)">#removal_triggers</a></span>
|
298
306
|
<small>FelECS::Systems</small>
|
@@ -300,7 +308,7 @@
|
|
300
308
|
</li>
|
301
309
|
|
302
310
|
|
303
|
-
<li class="
|
311
|
+
<li class="even ">
|
304
312
|
<div class="item">
|
305
313
|
<span class='object_link'><a href="FelECS/ComponentManager.html#removal_triggers-instance_method" title="FelECS::ComponentManager#removal_triggers (method)">#removal_triggers</a></span>
|
306
314
|
<small>FelECS::ComponentManager</small>
|
@@ -308,7 +316,7 @@
|
|
308
316
|
</li>
|
309
317
|
|
310
318
|
|
311
|
-
<li class="
|
319
|
+
<li class="odd ">
|
312
320
|
<div class="item">
|
313
321
|
<span class='object_link'><a href="FelECS/ComponentManager.html#removal_triggers-class_method" title="FelECS::ComponentManager.removal_triggers (method)">removal_triggers</a></span>
|
314
322
|
<small>FelECS::ComponentManager</small>
|
@@ -316,7 +324,7 @@
|
|
316
324
|
</li>
|
317
325
|
|
318
326
|
|
319
|
-
<li class="
|
327
|
+
<li class="even ">
|
320
328
|
<div class="item">
|
321
329
|
<span class='object_link'><a href="FelECS/Scenes.html#remove-instance_method" title="FelECS::Scenes#remove (method)">#remove</a></span>
|
322
330
|
<small>FelECS::Scenes</small>
|
@@ -324,7 +332,7 @@
|
|
324
332
|
</li>
|
325
333
|
|
326
334
|
|
327
|
-
<li class="
|
335
|
+
<li class="odd ">
|
328
336
|
<div class="item">
|
329
337
|
<span class='object_link'><a href="FelECS/Stage.html#remove-class_method" title="FelECS::Stage.remove (method)">remove</a></span>
|
330
338
|
<small>FelECS::Stage</small>
|
@@ -332,7 +340,7 @@
|
|
332
340
|
</li>
|
333
341
|
|
334
342
|
|
335
|
-
<li class="
|
343
|
+
<li class="even ">
|
336
344
|
<div class="item">
|
337
345
|
<span class='object_link'><a href="FelECS/Entities.html#remove-instance_method" title="FelECS::Entities#remove (method)">#remove</a></span>
|
338
346
|
<small>FelECS::Entities</small>
|
@@ -340,7 +348,7 @@
|
|
340
348
|
</li>
|
341
349
|
|
342
350
|
|
343
|
-
<li class="
|
351
|
+
<li class="odd ">
|
344
352
|
<div class="item">
|
345
353
|
<span class='object_link'><a href="FelECS/Stage.html#scenes-class_method" title="FelECS::Stage.scenes (method)">scenes</a></span>
|
346
354
|
<small>FelECS::Stage</small>
|
@@ -348,7 +356,7 @@
|
|
348
356
|
</li>
|
349
357
|
|
350
358
|
|
351
|
-
<li class="
|
359
|
+
<li class="even ">
|
352
360
|
<div class="item">
|
353
361
|
<span class='object_link'><a href="FelECS/Systems.html#scenes-instance_method" title="FelECS::Systems#scenes (method)">#scenes</a></span>
|
354
362
|
<small>FelECS::Systems</small>
|
@@ -356,7 +364,7 @@
|
|
356
364
|
</li>
|
357
365
|
|
358
366
|
|
359
|
-
<li class="
|
367
|
+
<li class="odd ">
|
360
368
|
<div class="item">
|
361
369
|
<span class='object_link'><a href="FelECS/Order.html#sort-class_method" title="FelECS::Order.sort (method)">sort</a></span>
|
362
370
|
<small>FelECS::Order</small>
|
@@ -364,7 +372,7 @@
|
|
364
372
|
</li>
|
365
373
|
|
366
374
|
|
367
|
-
<li class="
|
375
|
+
<li class="even ">
|
368
376
|
<div class="item">
|
369
377
|
<span class='object_link'><a href="FelECS/Scenes.html#systems-instance_method" title="FelECS::Scenes#systems (method)">#systems</a></span>
|
370
378
|
<small>FelECS::Scenes</small>
|
@@ -372,7 +380,7 @@
|
|
372
380
|
</li>
|
373
381
|
|
374
382
|
|
375
|
-
<li class="
|
383
|
+
<li class="odd ">
|
376
384
|
<div class="item">
|
377
385
|
<span class='object_link'><a href="FelECS/ComponentManager.html#to_h-instance_method" title="FelECS::ComponentManager#to_h (method)">#to_h</a></span>
|
378
386
|
<small>FelECS::ComponentManager</small>
|
@@ -380,7 +388,7 @@
|
|
380
388
|
</li>
|
381
389
|
|
382
390
|
|
383
|
-
<li class="
|
391
|
+
<li class="even ">
|
384
392
|
<div class="item">
|
385
393
|
<span class='object_link'><a href="FelECS/Systems.html#trigger_when_added-instance_method" title="FelECS::Systems#trigger_when_added (method)">#trigger_when_added</a></span>
|
386
394
|
<small>FelECS::Systems</small>
|
@@ -388,7 +396,7 @@
|
|
388
396
|
</li>
|
389
397
|
|
390
398
|
|
391
|
-
<li class="
|
399
|
+
<li class="odd ">
|
392
400
|
<div class="item">
|
393
401
|
<span class='object_link'><a href="FelECS/Systems.html#trigger_when_is_changed-instance_method" title="FelECS::Systems#trigger_when_is_changed (method)">#trigger_when_is_changed</a></span>
|
394
402
|
<small>FelECS::Systems</small>
|
@@ -396,7 +404,7 @@
|
|
396
404
|
</li>
|
397
405
|
|
398
406
|
|
399
|
-
<li class="
|
407
|
+
<li class="even ">
|
400
408
|
<div class="item">
|
401
409
|
<span class='object_link'><a href="FelECS/Systems.html#trigger_when_removed-instance_method" title="FelECS::Systems#trigger_when_removed (method)">#trigger_when_removed</a></span>
|
402
410
|
<small>FelECS::Systems</small>
|
@@ -404,7 +412,7 @@
|
|
404
412
|
</li>
|
405
413
|
|
406
414
|
|
407
|
-
<li class="
|
415
|
+
<li class="odd ">
|
408
416
|
<div class="item">
|
409
417
|
<span class='object_link'><a href="FelECS/ComponentManager.html#update_attrs-instance_method" title="FelECS::ComponentManager#update_attrs (method)">#update_attrs</a></span>
|
410
418
|
<small>FelECS::ComponentManager</small>
|