-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
7896 lines (7887 loc) · 781 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# Project information
site_name: 基岩文档
site_url: https://miemiemethod.github.io/bedrock-docs/
edit_uri: edit/main/docs/
site_description: Minecraft基岩版开发文档
# Repository
repo_name: GitHub
repo_url: https://github.com/MiemieMethod/bedrock-docs
# Copyright
copyright: >
Copyright © 2024 Miemie Method & LPaicen – <a href="#__consent">更改Cookie设置</a> – 除非另有声明,本站内容采用<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0;vertical-align: text-bottom;" src="/bedrock-docs/assets/images/by-nc-sa.svg" />知识共享署名-非商业性使用-相同方式共享</a>授权,附加条款亦可能应用。
# Configuration
theme:
name: material
language: zh
custom_dir: overrides
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: 切换至浅色模式
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: 切换至深色模式
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/toggle-switch-off
name: 切换至系统偏好
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.instant.progress
- navigation.tabs
- navigation.sections
- navigation.prune
- navigation.indexes
- navigation.top
- navigation.footer
- toc.follow
- search.suggest
- search.highlight
- search.share
- announce.dismiss
- content.action.edit
- content.action.view
- content.tooltips
- content.code.copy
- content.code.annotate
- content.tabs.link
# Hooks
hooks:
- overrides/hooks/shortcodes.py
- overrides/hooks/wikilink.py
- overrides/hooks/abbr.py
- overrides/hooks/templates.py
# Additional configuration
extra:
status:
new: 最近添加
deprecated: 已弃用
analytics:
provider: google
property: G-5E7Q5MKZZ8
feedback:
title: 本页是否有帮助?
ratings:
- icon: material/emoticon-happy-outline
name: 帮大忙了
data: 1
note: >-
感谢您的反馈!
- icon: material/emoticon-sad-outline
name: 改需改进
data: 0
note: >-
感谢您的反馈!或许您可以通过进一步填写<a href="https://www.wjx.cn/vm/QGP4l7k.aspx" target="_blank" rel="noopener">反馈问卷</a>来帮助我们改进。
consent:
title: 同意Cookie
description: >-
我们利用Cookie来记住您的访问记录和喜好,同时也用来评估我们的文档是否有效,以及用户是否能找到他们想要的信息。如果您同意,那么您就是在帮助我们不断优化我们的文档,非常感谢!<small>您随时可以在页面底部更改您的Cookie设置。</small>
cookies:
analytics:
name: Google分析
checked: true
github:
name: GitHub
checked: true
actions:
- accept
- manage
- reject
social:
- icon: fontawesome/brands/github
link: https://github.com/MiemieMethod/bedrock-docs
extra_css:
- assets/stylesheets/fonts.css
- assets/stylesheets/code.css
- assets/stylesheets/banner.css
- assets/stylesheets/keys.css
- assets/stylesheets/magiclink.css
- assets/stylesheets/progressbar.css
- assets/stylesheets/admonition.css
- assets/stylesheets/badge.css
- assets/stylesheets/tabbed.css
- assets/stylesheets/treeview.css
extra_javascript:
- assets/javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- assets/javascripts/uml.js
- https://unpkg.com/[email protected]/dist/mermaid.min.js
# - assets/javascripts/tablesort.js
# - https://unpkg.com/[email protected]/dist/tablesort.min.js
- assets/javascripts/viz-standalone.js
- assets/javascripts/viz.js
- assets/javascripts/navbar.js # navbar label position fix
# Plugins
plugins:
- search
- social
- blog:
post_excerpt_separator: <more/>
- rss
- tags
- minify:
minify_html: true
- git-revision-date-localized:
enable_creation_date: true
fallback_to_build_date: true
- git-committers:
repository: MiemieMethod/bedrock-docs
branch: main
- glightbox:
skip_classes:
- skip-image
auto_caption: true
background: gainsboro
# Extensions
markdown_extensions:
- abbr
# - admonition
- attr_list
# - def_list
- footnotes
- md_in_html
- toc:
permalink: true
permalink_title: 该段落的引用链接
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- tables
- smarty:
smart_quotes: false
# - wikilinks:
# base_url: https://wiki.mcbe-dev.net/p/
# build_url: !!python/name:tools.wikilink_parser.wiki_url_builder
- pymdownx.arithmatex:
generic: true
block_tag: 'pre'
- pymdownx.betterem
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic
# - pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- pymdownx.highlight:
pygments_lang_class: true
# auto_title: true
linenums_style: pymdownx-inline
anchor_linenums: true
line_spans: __span
- pymdownx.inlinehilite:
custom_inline:
- name: math
class: arithmatex
format: !!python/object/apply:pymdownx.arithmatex.arithmatex_inline_format {kwds: {mode: generic}}
- pymdownx.superfences:
preserve_tabs: true
custom_fences:
# Mermaid diagrams
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- name: math
class: arithmatex
format: !!python/object/apply:pymdownx.arithmatex.arithmatex_fenced_format {kwds: {mode: generic, tag: pre}}
- name: md-render
class: md-render
format: !!python/name:tools.pymdownx_md_render.md_sub_render
- name: viz
class: viz
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.keys:
separator: "\uff0b"
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
dedent_subsections: true
base_path: 'includes/'
auto_append:
- abbreviations.md
- glossaries.md
# - pymdownx.tabbed:
# alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- tools.collapse_code:
expand_text: ''
collapse_text: ''
expand_title: '展开'
collapse_title: '收起'
- pymdownx.magiclink:
repo_url_shortener: true
repo_url_shorthand: true
social_url_shorthand: true
social_url_shortener: true
user: MiemieMethod
repo: bedrock-docs
normalize_issue_symbols: true
labels:
commit: '提交'
compare: '比较'
issue: '议题'
pull: '拉取请求'
mention: '用户'
repository: '仓库'
discuss: '讨论'
- pymdownx.smartsymbols
- pymdownx.escapeall:
hardbreak: true
nbsp: true
- pymdownx.progressbar
- pymdownx.striphtml
- pymdownx.saneheaders
- pymdownx.blocks.admonition:
types:
- name: new
class: new
title: 新功能
- name: settings
class: settings
title: 设置
- name: note
class: note
title: 注意
- name: abstract
class: abstract
title: 摘要
- name: info
class: info
title: 信息
- name: tip
class: tip
title: 提示
- name: success
class: success
title: 成功
- name: question
class: question
title: 问题
- name: warning
class: warning
title: 警告
- name: failure
class: failure
title: 失败
- name: danger
class: danger
title: 危险
- name: bug
class: bug
title: 漏洞
- name: example
class: example
title: 示例
- name: quote
class: quote
title: 引用
- pymdownx.blocks.details:
types:
- name: details-new
class: new
title: 新功能
- name: details-settings
class: settings
title: 设置
- name: details-note
class: note
title: 注意
- name: details-abstract
class: abstract
title: 摘要
- name: details-info
class: info
title: 信息
- name: details-tip
class: tip
title: 提示
- name: details-success
class: success
title: 成功
- name: details-question
class: question
title: 问题
- name: details-warning
class: warning
title: 警告
- name: details-failure
class: failure
title: 失败
- name: details-danger
class: danger
title: 危险
- name: details-bug
class: bug
title: 漏洞
- name: details-example
class: example
title: 示例
- name: details-quote
class: quote
title: 引用
- pymdownx.blocks.html:
- pymdownx.blocks.definition:
- pymdownx.blocks.tab:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}
- pymdownx.blocks.caption
- pymdownx.fancylists
# Page tree
nav:
- '<span class="md-nav__link md-nav__link--active"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"></path></svg></span><span class="md-ellipsis">首页</span></span>':
- 欢迎: index.md
- '<span class="md-nav__link md-nav__link--active"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4v18h16v2H4c-1.1 0-2-.9-2-2V4zm11 3h5.5L15 1.5zM8 0h8l6 6v12c0 1.11-.89 2-2 2H8a2 2 0 0 1-2-2V2c0-1.11.89-2 2-2m9 16v-2H8v2zm3-4v-2H8v2z"></path></svg></span><span class="md-ellipsis">文档</span></span>':
- docs/index.md
- 通识:
- 版本: docs/general/version.md
- 日志: docs/general/log.md
- 模组: docs/general/mod.md
- 模型: docs/general/model.md
- '<span class="md-nav__link md-nav__link--active"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6a6 6 0 0 1 6 6c0 2.22-1.21 4.16-3 5.2V19a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-1.8c-1.79-1.04-3-2.98-3-5.2a6 6 0 0 1 6-6m2 15v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1zm6-10h3v2h-3zM1 11h3v2H1zM13 1v3h-2V1zM4.92 3.5l2.13 2.14-1.42 1.41L3.5 4.93zm12.03 2.13 2.12-2.13 1.43 1.43-2.13 2.12z"></path></svg></span><span class="md-ellipsis">教程</span></span>':
- guides/index.md
- 附加包:
- guides/addons/index.md
- 认识附加包: guides/addons/understanding-addons.md
- 制作纹理包: guides/addons/creating-texture-packs.md
- 本地化: guides/addons/localization.md
- 使用子包: guides/addons/utilizing-sub-packs.md
- 数据驱动:
- guides/addons/data-driven/index.md
- 制作模型: guides/addons/data-driven/creating-models.md
- 认识Molang: guides/addons/data-driven/understanding-molang.md
- 自定义实体:
- guides/addons/data-driven/entities/index.md
- 第一个实体: guides/addons/data-driven/entities/adding-custom-entities.md
- 动画与动画控制器: guides/addons/data-driven/entities/animations-and-animation-controllers.md
- 添加附着物: guides/addons/data-driven/entities/adding-attachables.md
- 创建NPC: guides/addons/data-driven/entities/adding-npc.md
- 自定义方块:
- guides/addons/data-driven/blocks/index.md
- 第一个方块: guides/addons/data-driven/blocks/adding-custom-blocks.md
- 自定义工作台: guides/addons/data-driven/blocks/adding-custom-crafting-table.md
- 自定义物品:
- guides/addons/data-driven/items/index.md
- 第一个物品: guides/addons/data-driven/items/adding-custom-items.md
- 自定义粒子: guides/addons/data-driven/adding-custom-particles.md
- 自定义声音: guides/addons/data-driven/adding-custom-sounds.md
- 自定义配方: guides/addons/data-driven/adding-custom-recipes.md
- 自定义战利品表: guides/addons/data-driven/adding-custom-loot-tables.md
- 自定义迷雾: guides/addons/data-driven/adding-custom-fogs.md
- 自定义地物: guides/addons/data-driven/adding-custom-features.md
- 自定义生物群系: guides/addons/data-driven/adding-custom-biomes.md
- 自定义维度: guides/addons/data-driven/adding-custom-dimensions.md
- 自定义功能域: guides/addons/data-driven/adding-custom-volumes.md
- 使用函数: guides/addons/utilizing-functions.md
- 创建世界模板: guides/addons/create-a-world-template.md
- 制作皮肤包: guides/addons/creating-skin-packs.md
- 制作结构包: guides/addons/creating-structure-packs.md
- 脚本API:
- guides/addons/script-api/index.md
- 构建第一个脚本: guides/addons/script-api/building-your-first-scripts.md
- 使用TypeScript构建包: guides/addons/script-api/building-packs-with-typescript.md
- 模组SDK:
- guides/addons/modsdk/index.md
- 社区模组:
- guides/community-mods/index.md
- ICMod:
- guides/community-mods/icmod/index.md
- ModPE:
- guides/community-mods/modpe/index.md
- 软件工具:
- guides/tools/index.md
- Blockbench:
- guides/tools/blockbench/index.md
- 使用指南: guides/tools/blockbench/how-to-use.md
- 制作Minecraft风格标题: guides/tools/blockbench/creating-minecraft-style-title.md
- 编辑器: guides/tools/editor.md
- 服务端:
- guides/servers/index.md
- 着色器:
- guides/shaders/index.md
- 认识着色器: guides/shaders/understanding-shaders.md
- 使用并自定义延迟渲染: guides/shaders/getting-started-with-deferred-lighting.md
- 启用光线追踪并制作PBR包: guides/shaders/getting-started-with-ray-tracing.md
- 中国版着色器:
- guides/shaders/netease-shader/index.md
- BetterRTX: guides/shaders/betterrtx.md
- 杂项教程:
- guides/misc/index.md
- 过时教程:
- guides/outdated/index.md
- '1.16.100':
- guides/outdated/1.16.100/index.md
- '1.10':
- guides/outdated/1.10/index.md
- '<span class="md-nav__link md-nav__link--active"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.368 1.01a.75.75 0 0 1 .623.859L6.57 4.5h3.98l.46-2.868a.75.75 0 0 1 1.48.237L12.07 4.5h2.18a.75.75 0 0 1 0 1.5h-2.42l-.64 4h2.56a.75.75 0 0 1 0 1.5h-2.8l-.46 2.869a.75.75 0 0 1-1.48-.237l.42-2.632H5.45l-.46 2.869a.75.75 0 0 1-1.48-.237l.42-2.632H1.75a.75.75 0 0 1 0-1.5h2.42l.64-4H2.25a.75.75 0 0 1 0-1.5h2.8l.46-2.868a.75.75 0 0 1 .858-.622M9.67 10l.64-4H6.33l-.64 4Z"></path></svg></span><span class="md-ellipsis">话题</span></span>':
- topics/index.md
- '<span class="md-nav__link md-nav__link--active"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M96 0C43 0 0 43 0 96v320c0 53 43 96 96 96h320c17.7 0 32-14.3 32-32s-14.3-32-32-32v-64c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H96m0 384h256v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32m32-240c0-8.8 7.2-16 16-16h192c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16m16 48h192c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16"></path></svg></span><span class="md-ellipsis">参考</span></span>':
- refs/index.md
- 数据驱动:
- refs/data-driven/versioned/index.md
- 行为包:
- 物品:
- refs/data-driven/versioned/behavior/item.md
- 资源包:
- 物品:
- refs/data-driven/versioned/resource/item.md
- 数据驱动(来自Blockception):
- refs/data-driven/blockception/index.md
- 物品:
- 行为定义:
- refs/data-driven/blockception/item/behavior/index.md
- 组件:
- <code>minecraft:allow_off_hand</code>: refs/data-driven/blockception/item/behavior/components/allow_off_hand.md
- <code>minecraft:block_placer</code>: refs/data-driven/blockception/item/behavior/components/block_placer.md
- <code>minecraft:bundle_interaction</code>: refs/data-driven/blockception/item/behavior/components/bundle_interaction.md
- <code>minecraft:can_destroy_in_creative</code>: refs/data-driven/blockception/item/behavior/components/can_destroy_in_creative.md
- <code>minecraft:cooldown</code>: refs/data-driven/blockception/item/behavior/components/cooldown.md
- <code>minecraft:custom_components</code>: refs/data-driven/blockception/item/behavior/components/custom_components.md
- <code>minecraft:damage</code>: refs/data-driven/blockception/item/behavior/components/damage.md
- <code>minecraft:damage_absorption</code>: refs/data-driven/blockception/item/behavior/components/damage_absorption.md
- <code>minecraft:digger</code>: refs/data-driven/blockception/item/behavior/components/digger.md
- <code>minecraft:display_name</code>: refs/data-driven/blockception/item/behavior/components/display_name.md
- <code>minecraft:durability_sensor</code>: refs/data-driven/blockception/item/behavior/components/durability_sensor.md
- <code>minecraft:durability</code>: refs/data-driven/blockception/item/behavior/components/durability.md
- <code>minecraft:dyeable</code>: refs/data-driven/blockception/item/behavior/components/dyeable.md
- <code>minecraft:enchantable</code>: refs/data-driven/blockception/item/behavior/components/enchantable.md
- <code>minecraft:entity_placer</code>: refs/data-driven/blockception/item/behavior/components/entity_placer.md
- <code>minecraft:food</code>: refs/data-driven/blockception/item/behavior/components/food.md
- <code>minecraft:fuel</code>: refs/data-driven/blockception/item/behavior/components/fuel.md
- <code>minecraft:glint</code>: refs/data-driven/blockception/item/behavior/components/glint.md
- <code>minecraft:hand_equipped</code>: refs/data-driven/blockception/item/behavior/components/hand_equipped.md
- <code>minecraft:icon</code>: refs/data-driven/blockception/item/behavior/components/icon.md
- <code>minecraft:liquid_clipped</code>: refs/data-driven/blockception/item/behavior/components/liquid_clipped.md
- <code>minecraft:max_stack_size</code>: refs/data-driven/blockception/item/behavior/components/max_stack_size.md
- <code>minecraft:projectile</code>: refs/data-driven/blockception/item/behavior/components/projectile.md
- <code>minecraft:record</code>: refs/data-driven/blockception/item/behavior/components/record.md
- <code>minecraft:rarity</code>: refs/data-driven/blockception/item/behavior/components/rarity.md
- <code>minecraft:repairable</code>: refs/data-driven/blockception/item/behavior/components/repairable.md
- <code>minecraft:shooter</code>: refs/data-driven/blockception/item/behavior/components/shooter.md
- <code>minecraft:should_despawn</code>: refs/data-driven/blockception/item/behavior/components/should_despawn.md
- <code>minecraft:stacked_by_data</code>: refs/data-driven/blockception/item/behavior/components/stacked_by_data.md
- <code>minecraft:storage_item</code>: refs/data-driven/blockception/item/behavior/components/storage_item.md
- <code>minecraft:tags</code>: refs/data-driven/blockception/item/behavior/components/tags.md
- <code>minecraft:throwable</code>: refs/data-driven/blockception/item/behavior/components/throwable.md
- <code>minecraft:use_animation</code>: refs/data-driven/blockception/item/behavior/components/use_animation.md
- <code>minecraft:use_modifiers</code>: refs/data-driven/blockception/item/behavior/components/use_modifiers.md
- <code>minecraft:wearable</code>: refs/data-driven/blockception/item/behavior/components/wearable.md
- 资源定义:
- refs/data-driven/blockception/item/resource/index.md
- 方块:
- 行为定义:
- refs/data-driven/blockception/block/behavior/index.md
- 组件:
- <code>minecraft:collision_box</code>: refs/data-driven/blockception/block/behavior/components/collision_box.md
- <code>minecraft:crafting_table</code>: refs/data-driven/blockception/block/behavior/components/crafting_table.md
- <code>minecraft:destructible_by_explosion</code>: refs/data-driven/blockception/block/behavior/components/destructible_by_explosion.md
- <code>minecraft:destructible_by_mining</code>: refs/data-driven/blockception/block/behavior/components/destructible_by_mining.md
- <code>minecraft:display_name</code>: refs/data-driven/blockception/block/behavior/components/display_name.md
- <code>minecraft:flammable</code>: refs/data-driven/blockception/block/behavior/components/flammable.md
- <code>minecraft:friction</code>: refs/data-driven/blockception/block/behavior/components/friction.md
- <code>minecraft:geometry</code>: refs/data-driven/blockception/block/behavior/components/geometry.md
- <code>minecraft:light_dampening</code>: refs/data-driven/blockception/block/behavior/components/light_dampening.md
- <code>minecraft:light_emission</code>: refs/data-driven/blockception/block/behavior/components/light_emission.md
- <code>minecraft:loot</code>: refs/data-driven/blockception/block/behavior/components/loot.md
- <code>minecraft:map_color</code>: refs/data-driven/blockception/block/behavior/components/map_color.md
- <code>minecraft:material_instances</code>: refs/data-driven/blockception/block/behavior/components/material_instances.md
- <code>minecraft:placement_filter</code>: refs/data-driven/blockception/block/behavior/components/placement_filter.md
- <code>minecraft:redstone_conductivity</code>: refs/data-driven/blockception/block/behavior/components/redstone_conductivity.md
- <code>minecraft:selection_box</code>: refs/data-driven/blockception/block/behavior/components/selection_box.md
- <code>minecraft:transformation</code>: refs/data-driven/blockception/block/behavior/components/transformation.md
- <code>minecraft:custom_components</code>: refs/data-driven/blockception/block/behavior/components/custom_components.md
- <code>minecraft:tick</code>: refs/data-driven/blockception/block/behavior/components/tick.md
- <code>minecraft:entity_fall_on</code>: refs/data-driven/blockception/block/behavior/components/entity_fall_on.md
- 资源定义:
- refs/data-driven/blockception/block/resource/index.md
- 实体:
- 行为定义:
- refs/data-driven/blockception/entity/behavior/index.md
- 组件:
- <code>minecraft:absorption</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:addrider</code>: refs/data-driven/blockception/entity/behavior/components/addrider.md
- <code>minecraft:admire_item</code>: refs/data-driven/blockception/entity/behavior/components/admire_item.md
- <code>minecraft:ageable</code>: refs/data-driven/blockception/entity/behavior/components/ageable.md
- <code>minecraft:ambient_sound_interval</code>: refs/data-driven/blockception/entity/behavior/components/ambient_sound_interval.md
- <code>minecraft:anger_level</code>: refs/data-driven/blockception/entity/behavior/components/anger_level.md
- <code>minecraft:angry</code>: refs/data-driven/blockception/entity/behavior/components/angry.md
- <code>minecraft:annotation.break_door</code>: refs/data-driven/blockception/entity/behavior/components/annotation.break_door.md
- <code>minecraft:annotation.open_door</code>: refs/data-driven/blockception/entity/behavior/components/annotation.open_door.md
- <code>minecraft:area_attack</code>: refs/data-driven/blockception/entity/behavior/components/area_attack.md
- <code>minecraft:attack_cooldown</code>: refs/data-driven/blockception/entity/behavior/components/attack_cooldown.md
- <code>minecraft:attack_damage</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:attack</code>: refs/data-driven/blockception/entity/behavior/components/attack.md
- <code>minecraft:balloonable</code>: refs/data-driven/blockception/entity/behavior/components/balloonable.md
- <code>minecraft:barter</code>: refs/data-driven/blockception/entity/behavior/components/barter.md
- <code>minecraft:block_climber</code>: refs/data-driven/blockception/entity/behavior/components/block_climber.md
- <code>minecraft:block_sensor</code>: refs/data-driven/blockception/entity/behavior/components/block_sensor.md
- <code>minecraft:body_rotation_blocked</code>: refs/data-driven/blockception/entity/behavior/components/body_rotation_blocked.md
- <code>minecraft:boostable</code>: refs/data-driven/blockception/entity/behavior/components/boostable.md
- <code>minecraft:boss</code>: refs/data-driven/blockception/entity/behavior/components/boss.md
- <code>minecraft:break_blocks</code>: refs/data-driven/blockception/entity/behavior/components/break_blocks.md
- <code>minecraft:breathable</code>: refs/data-driven/blockception/entity/behavior/components/breathable.md
- <code>minecraft:breedable</code>: refs/data-driven/blockception/entity/behavior/components/breedable.md
- <code>minecraft:bribeable</code>: refs/data-driven/blockception/entity/behavior/components/bribeable.md
- <code>minecraft:buoyant</code>: refs/data-driven/blockception/entity/behavior/components/buoyant.md
- <code>minecraft:burns_in_daylight</code>: refs/data-driven/blockception/entity/behavior/components/burns_in_daylight.md
- <code>minecraft:can_climb</code>: refs/data-driven/blockception/entity/behavior/components/can_climb.md
- <code>minecraft:can_fly</code>: refs/data-driven/blockception/entity/behavior/components/can_fly.md
- <code>minecraft:can_join_raid</code>: refs/data-driven/blockception/entity/behavior/components/can_join_raid.md
- <code>minecraft:can_power_jump</code>: refs/data-driven/blockception/entity/behavior/components/can_power_jump.md
- <code>minecraft:celebrate_hunt</code>: refs/data-driven/blockception/entity/behavior/components/celebrate_hunt.md
- <code>minecraft:collision_box</code>: refs/data-driven/blockception/entity/behavior/components/collision_box.md
- <code>minecraft:color</code>: refs/data-driven/blockception/entity/behavior/components/color.md
- <code>minecraft:color2</code>: refs/data-driven/blockception/entity/behavior/components/color2.md
- <code>minecraft:combat_regeneration</code>: refs/data-driven/blockception/entity/behavior/components/combat_regeneration.md
- <code>minecraft:conditional_bandwidth_optimization</code>: refs/data-driven/blockception/entity/behavior/components/conditional_bandwidth_optimization.md
- <code>minecraft:custom_hit_test</code>: refs/data-driven/blockception/entity/behavior/components/custom_hit_test.md
- <code>minecraft:damage_over_time</code>: refs/data-driven/blockception/entity/behavior/components/damage_over_time.md
- <code>minecraft:damage_sensor</code>: refs/data-driven/blockception/entity/behavior/components/damage_sensor.md
- <code>minecraft:dash</code>: refs/data-driven/blockception/entity/behavior/components/dash.md
- <code>minecraft:default_look_angle</code>: refs/data-driven/blockception/entity/behavior/components/default_look_angle.md
- <code>minecraft:despawn</code>: refs/data-driven/blockception/entity/behavior/components/despawn.md
- <code>minecraft:drying_out_timer</code>: refs/data-driven/blockception/entity/behavior/components/drying_out_timer.md
- <code>minecraft:dweller</code>: refs/data-driven/blockception/entity/behavior/components/dweller.md
- <code>minecraft:economy_trade_table</code>: refs/data-driven/blockception/entity/behavior/components/economy_trade_table.md
- <code>minecraft:entity_sensor</code>: refs/data-driven/blockception/entity/behavior/components/entity_sensor.md
- <code>minecraft:environment_sensor</code>: refs/data-driven/blockception/entity/behavior/components/environment_sensor.md
- <code>minecraft:equip_item</code>: refs/data-driven/blockception/entity/behavior/components/equip_item.md
- <code>minecraft:equipment</code>: refs/data-driven/blockception/entity/behavior/components/equipment.md
- <code>minecraft:equippable</code>: refs/data-driven/blockception/entity/behavior/components/equippable.md
- <code>minecraft:exhaustion_values</code>: refs/data-driven/blockception/entity/behavior/components/exhaustion_values.md
- <code>minecraft:experience_reward</code>: refs/data-driven/blockception/entity/behavior/components/experience_reward.md
- <code>minecraft:explode</code>: refs/data-driven/blockception/entity/behavior/components/explode.md
- <code>minecraft:fall_damage</code>: refs/data-driven/blockception/entity/behavior/components/fall_damage.md
- <code>minecraft:fire_immune</code>: refs/data-driven/blockception/entity/behavior/components/fire_immune.md
- <code>minecraft:floats_in_liquid</code>: refs/data-driven/blockception/entity/behavior/components/floats_in_liquid.md
- <code>minecraft:flocking</code>: refs/data-driven/blockception/entity/behavior/components/flocking.md
- <code>minecraft:flying_speed</code>: refs/data-driven/blockception/entity/behavior/components/flying_speed.md
- <code>minecraft:follow_range</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:friction_modifier</code>: refs/data-driven/blockception/entity/behavior/components/friction_modifier.md
- <code>minecraft:game_event_movement_tracking</code>: refs/data-driven/blockception/entity/behavior/components/game_event_movement_tracking.md
- <code>minecraft:genetics</code>: refs/data-driven/blockception/entity/behavior/components/genetics.md
- <code>minecraft:giveable</code>: refs/data-driven/blockception/entity/behavior/components/giveable.md
- <code>minecraft:ground_offset</code>: refs/data-driven/blockception/entity/behavior/components/ground_offset.md
- <code>minecraft:group_size</code>: refs/data-driven/blockception/entity/behavior/components/group_size.md
- <code>minecraft:grows_crop</code>: refs/data-driven/blockception/entity/behavior/components/grows_crop.md
- <code>minecraft:healable</code>: refs/data-driven/blockception/entity/behavior/components/healable.md
- <code>minecraft:health</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:heartbeat</code>: refs/data-driven/blockception/entity/behavior/components/heartbeat.md
- <code>minecraft:hide</code>: refs/data-driven/blockception/entity/behavior/components/hide.md
- <code>minecraft:home</code>: refs/data-driven/blockception/entity/behavior/components/home.md
- <code>minecraft:horse.jump_strength</code>: refs/data-driven/blockception/entity/behavior/components/horse.jump_strength.md
- <code>minecraft:hurt_on_condition</code>: refs/data-driven/blockception/entity/behavior/components/hurt_on_condition.md
- <code>minecraft:hurt_when_wet</code>: refs/data-driven/blockception/entity/behavior/components/hurt_when_wet.md
- <code>minecraft:input_ground_controlled</code>: refs/data-driven/blockception/entity/behavior/components/input_ground_controlled.md
- <code>minecraft:inside_block_notifier</code>: refs/data-driven/blockception/entity/behavior/components/inside_block_notifier.md
- <code>minecraft:insomnia</code>: refs/data-driven/blockception/entity/behavior/components/insomnia.md
- <code>minecraft:instant_despawn</code>: refs/data-driven/blockception/entity/behavior/components/instant_despawn.md
- <code>minecraft:interact</code>: refs/data-driven/blockception/entity/behavior/components/interact.md
- <code>minecraft:inventory</code>: refs/data-driven/blockception/entity/behavior/components/inventory.md
- <code>minecraft:is_baby</code>: refs/data-driven/blockception/entity/behavior/components/is_baby.md
- <code>minecraft:is_charged</code>: refs/data-driven/blockception/entity/behavior/components/is_charged.md
- <code>minecraft:is_chested</code>: refs/data-driven/blockception/entity/behavior/components/is_chested.md
- <code>minecraft:is_dyeable</code>: refs/data-driven/blockception/entity/behavior/components/is_dyeable.md
- <code>minecraft:is_hidden_when_invisible</code>: refs/data-driven/blockception/entity/behavior/components/is_hidden_when_invisible.md
- <code>minecraft:is_ignited</code>: refs/data-driven/blockception/entity/behavior/components/is_ignited.md
- <code>minecraft:is_illager_captain</code>: refs/data-driven/blockception/entity/behavior/components/is_illager_captain.md
- <code>minecraft:is_pregnant</code>: refs/data-driven/blockception/entity/behavior/components/is_pregnant.md
- <code>minecraft:is_saddled</code>: refs/data-driven/blockception/entity/behavior/components/is_saddled.md
- <code>minecraft:is_shaking</code>: refs/data-driven/blockception/entity/behavior/components/is_shaking.md
- <code>minecraft:is_sheared</code>: refs/data-driven/blockception/entity/behavior/components/is_sheared.md
- <code>minecraft:is_stackable</code>: refs/data-driven/blockception/entity/behavior/components/is_stackable.md
- <code>minecraft:is_stunned</code>: refs/data-driven/blockception/entity/behavior/components/is_stunned.md
- <code>minecraft:is_tamed</code>: refs/data-driven/blockception/entity/behavior/components/is_tamed.md
- <code>minecraft:item_controllable</code>: refs/data-driven/blockception/entity/behavior/components/item_controllable.md
- <code>minecraft:item_hopper</code>: refs/data-driven/blockception/entity/behavior/components/item_hopper.md
- <code>minecraft:jump.dynamic</code>: refs/data-driven/blockception/entity/behavior/components/jump.dynamic.md
- <code>minecraft:jump.static</code>: refs/data-driven/blockception/entity/behavior/components/jump.static.md
- <code>minecraft:knockback_resistance</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:lava_movement</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:leashable</code>: refs/data-driven/blockception/entity/behavior/components/leashable.md
- <code>minecraft:lookat</code>: refs/data-driven/blockception/entity/behavior/components/lookat.md
- <code>minecraft:loot</code>: refs/data-driven/blockception/entity/behavior/components/loot.md
- <code>minecraft:luck</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:managed_wandering_trader</code>: refs/data-driven/blockception/entity/behavior/components/managed_wandering_trader.md
- <code>minecraft:mark_variant</code>: refs/data-driven/blockception/entity/behavior/components/mark_variant.md
- <code>minecraft:mob_effect</code>: refs/data-driven/blockception/entity/behavior/components/mob_effect.md
- <code>minecraft:mob_effect_immunity</code>: refs/data-driven/blockception/entity/behavior/components/mob_effect_immunity.md
- <code>minecraft:movement_sound_distance_offset</code>: refs/data-driven/blockception/entity/behavior/components/movement_sound_distance_offset.md
- <code>minecraft:movement.amphibious</code>: refs/data-driven/blockception/entity/behavior/components/movement.amphibious.md
- <code>minecraft:movement.basic</code>: refs/data-driven/blockception/entity/behavior/components/movement.basic.md
- <code>minecraft:movement.fly</code>: refs/data-driven/blockception/entity/behavior/components/movement.fly.md
- <code>minecraft:movement.generic</code>: refs/data-driven/blockception/entity/behavior/components/movement.generic.md
- <code>minecraft:movement.glide</code>: refs/data-driven/blockception/entity/behavior/components/movement.glide.md
- <code>minecraft:movement.hover</code>: refs/data-driven/blockception/entity/behavior/components/movement.hover.md
- <code>minecraft:movement.jump</code>: refs/data-driven/blockception/entity/behavior/components/movement.jump.md
- <code>minecraft:movement.skip</code>: refs/data-driven/blockception/entity/behavior/components/movement.skip.md
- <code>minecraft:movement.sway</code>: refs/data-driven/blockception/entity/behavior/components/movement.sway.md
- <code>minecraft:movement</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:nameable</code>: refs/data-driven/blockception/entity/behavior/components/nameable.md
- <code>minecraft:navigation.climb</code>: refs/data-driven/blockception/entity/behavior/components/navigation.climb.md
- <code>minecraft:navigation.float</code>: refs/data-driven/blockception/entity/behavior/components/navigation.float.md
- <code>minecraft:navigation.fly</code>: refs/data-driven/blockception/entity/behavior/components/navigation.fly.md
- <code>minecraft:navigation.generic</code>: refs/data-driven/blockception/entity/behavior/components/navigation.generic.md
- <code>minecraft:navigation.hover</code>: refs/data-driven/blockception/entity/behavior/components/navigation.hover.md
- <code>minecraft:navigation.swim</code>: refs/data-driven/blockception/entity/behavior/components/navigation.swim.md
- <code>minecraft:navigation.walk</code>: refs/data-driven/blockception/entity/behavior/components/navigation.walk.md
- <code>minecraft:npc</code>: refs/data-driven/blockception/entity/behavior/components/npc.md
- <code>minecraft:on_death</code>: refs/data-driven/blockception/entity/behavior/components/on_death.md
- <code>minecraft:on_friendly_anger</code>: refs/data-driven/blockception/entity/behavior/components/on_friendly_anger.md
- <code>minecraft:on_hurt_by_player</code>: refs/data-driven/blockception/entity/behavior/components/on_hurt_by_player.md
- <code>minecraft:on_hurt</code>: refs/data-driven/blockception/entity/behavior/components/on_hurt.md
- <code>minecraft:on_ignite</code>: refs/data-driven/blockception/entity/behavior/components/on_ignite.md
- <code>minecraft:on_start_landing</code>: refs/data-driven/blockception/entity/behavior/components/on_start_landing.md
- <code>minecraft:on_start_takeoff</code>: refs/data-driven/blockception/entity/behavior/components/on_start_takeoff.md
- <code>minecraft:on_target_acquired</code>: refs/data-driven/blockception/entity/behavior/components/on_target_acquired.md
- <code>minecraft:on_target_escape</code>: refs/data-driven/blockception/entity/behavior/components/on_target_escape.md
- <code>minecraft:on_wake_with_owner</code>: refs/data-driven/blockception/entity/behavior/components/on_wake_with_owner.md
- <code>minecraft:out_of_control</code>: refs/data-driven/blockception/entity/behavior/components/out_of_control.md
- <code>minecraft:peek</code>: refs/data-driven/blockception/entity/behavior/components/peek.md
- <code>minecraft:persistent</code>: refs/data-driven/blockception/entity/behavior/components/persistent.md
- <code>minecraft:physics</code>: refs/data-driven/blockception/entity/behavior/components/physics.md
- <code>minecraft:player.exhaustion</code>: refs/data-driven/blockception/entity/behavior/components/player.exhaustion.md
- <code>minecraft:player.experience</code>: refs/data-driven/blockception/entity/behavior/components/player.experience.md
- <code>minecraft:player.level</code>: refs/data-driven/blockception/entity/behavior/components/player.level.md
- <code>minecraft:player.saturation</code>: refs/data-driven/blockception/entity/behavior/components/player.saturation.md
- <code>minecraft:preferred_path</code>: refs/data-driven/blockception/entity/behavior/components/preferred_path.md
- <code>minecraft:projectile</code>: refs/data-driven/blockception/entity/behavior/components/projectile.md
- <code>minecraft:push_through</code>: refs/data-driven/blockception/entity/behavior/components/push_through.md
- <code>minecraft:pushable</code>: refs/data-driven/blockception/entity/behavior/components/pushable.md
- <code>minecraft:raid_trigger</code>: refs/data-driven/blockception/entity/behavior/components/raid_trigger.md
- <code>minecraft:rail_movement</code>: refs/data-driven/blockception/entity/behavior/components/rail_movement.md
- <code>minecraft:rail_sensor</code>: refs/data-driven/blockception/entity/behavior/components/rail_sensor.md
- <code>minecraft:ravager_blocked</code>: refs/data-driven/blockception/entity/behavior/components/ravager_blocked.md
- <code>minecraft:rideable</code>: refs/data-driven/blockception/entity/behavior/components/rideable.md
- <code>minecraft:reflect_projectiles</code>: refs/data-driven/blockception/entity/behavior/components/reflect_projectiles.md
- <code>minecraft:scale_by_age</code>: refs/data-driven/blockception/entity/behavior/components/scale_by_age.md
- <code>minecraft:scale</code>: refs/data-driven/blockception/entity/behavior/components/scale.md
- <code>minecraft:scheduler</code>: refs/data-driven/blockception/entity/behavior/components/scheduler.md
- <code>minecraft:shareables</code>: refs/data-driven/blockception/entity/behavior/components/shareables.md
- <code>minecraft:shooter</code>: refs/data-driven/blockception/entity/behavior/components/shooter.md
- <code>minecraft:sittable</code>: refs/data-driven/blockception/entity/behavior/components/sittable.md
- <code>minecraft:skin_id</code>: refs/data-driven/blockception/entity/behavior/components/skin_id.md
- <code>minecraft:sound_volume</code>: refs/data-driven/blockception/entity/behavior/components/sound_volume.md
- <code>minecraft:spawn_entity</code>: refs/data-driven/blockception/entity/behavior/components/spawn_entity.md
- <code>minecraft:spell_effects</code>: refs/data-driven/blockception/entity/behavior/components/spell_effects.md
- <code>minecraft:strength</code>: refs/data-driven/blockception/entity/behavior/components/strength.md
- <code>minecraft:suspect_tracking</code>: refs/data-driven/blockception/entity/behavior/components/suspect_tracking.md
- <code>minecraft:tameable</code>: refs/data-driven/blockception/entity/behavior/components/tameable.md
- <code>minecraft:tamemount</code>: refs/data-driven/blockception/entity/behavior/components/tamemount.md
- <code>minecraft:target_nearby_sensor</code>: refs/data-driven/blockception/entity/behavior/components/target_nearby_sensor.md
- <code>minecraft:teleport</code>: refs/data-driven/blockception/entity/behavior/components/teleport.md
- <code>minecraft:tick_world</code>: refs/data-driven/blockception/entity/behavior/components/tick_world.md
- <code>minecraft:timer</code>: refs/data-driven/blockception/entity/behavior/components/timer.md
- <code>minecraft:trade_resupply</code>: refs/data-driven/blockception/entity/behavior/components/trade_resupply.md
- <code>minecraft:trade_table</code>: refs/data-driven/blockception/entity/behavior/components/trade_table.md
- <code>minecraft:trail</code>: refs/data-driven/blockception/entity/behavior/components/trail.md
- <code>minecraft:transformation</code>: refs/data-driven/blockception/entity/behavior/components/transformation.md
- <code>minecraft:trust</code>: refs/data-driven/blockception/entity/behavior/components/trust.md
- <code>minecraft:trusting</code>: refs/data-driven/blockception/entity/behavior/components/trusting.md
- <code>minecraft:type_family</code>: refs/data-driven/blockception/entity/behavior/components/type_family.md
- <code>minecraft:underwater_movement</code>: refs/data-driven/blockception/entity/behavior/components/attribute.md
- <code>minecraft:variable_max_auto_step</code>: refs/data-driven/blockception/entity/behavior/components/variable_max_auto_step.md
- <code>minecraft:variant</code>: refs/data-driven/blockception/entity/behavior/components/variant.md
- <code>minecraft:vibration_damper</code>: refs/data-driven/blockception/entity/behavior/components/vibration_damper.md
- <code>minecraft:vibration_listener</code>: refs/data-driven/blockception/entity/behavior/components/vibration_listener.md
- <code>minecraft:walk_animation_speed</code>: refs/data-driven/blockception/entity/behavior/components/walk_animation_speed.md
- <code>minecraft:wants_jockey</code>: refs/data-driven/blockception/entity/behavior/components/wants_jockey.md
- <code>minecraft:water_movement</code>: refs/data-driven/blockception/entity/behavior/components/water_movement.md
- <code>minecraft:behavior.admire_item</code>: refs/data-driven/blockception/entity/behavior/components/admire_item.md
- <code>minecraft:behavior.avoid_block</code>: refs/data-driven/blockception/entity/behavior/components/avoid_block.md
- <code>minecraft:behavior.avoid_mob_type</code>: refs/data-driven/blockception/entity/behavior/components/avoid_mob_type.md
- <code>minecraft:behavior.barter</code>: refs/data-driven/blockception/entity/behavior/components/barter.md
- <code>minecraft:behavior.beg</code>: refs/data-driven/blockception/entity/behavior/components/beg.md
- <code>minecraft:behavior.break_door</code>: refs/data-driven/blockception/entity/behavior/components/break_door.md
- <code>minecraft:behavior.breed</code>: refs/data-driven/blockception/entity/behavior/components/breed.md
- <code>minecraft:behavior.celebrate_survive</code>: refs/data-driven/blockception/entity/behavior/components/celebrate_survive.md
- <code>minecraft:behavior.celebrate</code>: refs/data-driven/blockception/entity/behavior/components/celebrate.md
- <code>minecraft:behavior.charge_attack</code>: refs/data-driven/blockception/entity/behavior/components/charge_attack.md
- <code>minecraft:behavior.charge_held_item</code>: refs/data-driven/blockception/entity/behavior/components/charge_held_item.md
- <code>minecraft:behavior.circle_around_anchor</code>: refs/data-driven/blockception/entity/behavior/components/circle_around_anchor.md
- <code>minecraft:behavior.controlled_by_player</code>: refs/data-driven/blockception/entity/behavior/components/controlled_by_player.md
- <code>minecraft:behavior.croak</code>: refs/data-driven/blockception/entity/behavior/components/croak.md
- <code>minecraft:behavior.defend_trusted_target</code>: refs/data-driven/blockception/entity/behavior/components/defend_trusted_target.md
- <code>minecraft:behavior.defend_village_target</code>: refs/data-driven/blockception/entity/behavior/components/defend_village_target.md
- <code>minecraft:behavior.delayed_attack</code>: refs/data-driven/blockception/entity/behavior/components/delayed_attack.md
- <code>minecraft:behavior.dig</code>: refs/data-driven/blockception/entity/behavior/components/dig.md
- <code>minecraft:behavior.door_interact</code>: refs/data-driven/blockception/entity/behavior/components/door_interact.md
- <code>minecraft:behavior.dragonchargeplayer</code>: refs/data-driven/blockception/entity/behavior/components/dragonchargeplayer.md
- <code>minecraft:behavior.dragondeath</code>: refs/data-driven/blockception/entity/behavior/components/dragondeath.md
- <code>minecraft:behavior.dragonflaming</code>: refs/data-driven/blockception/entity/behavior/components/dragonflaming.md
- <code>minecraft:behavior.dragonholdingpattern</code>: refs/data-driven/blockception/entity/behavior/components/dragonholdingpattern.md
- <code>minecraft:behavior.dragonlanding</code>: refs/data-driven/blockception/entity/behavior/components/dragonlanding.md
- <code>minecraft:behavior.dragonscanning</code>: refs/data-driven/blockception/entity/behavior/components/dragonscanning.md
- <code>minecraft:behavior.dragonstrafeplayer</code>: refs/data-driven/blockception/entity/behavior/components/dragonstrafeplayer.md
- <code>minecraft:behavior.dragontakeoff</code>: refs/data-driven/blockception/entity/behavior/components/dragontakeoff.md
- <code>minecraft:behavior.drink_milk</code>: refs/data-driven/blockception/entity/behavior/components/drink_milk.md
- <code>minecraft:behavior.drink_potion</code>: refs/data-driven/blockception/entity/behavior/components/drink_potion.md
- <code>minecraft:behavior.drop_item_for</code>: refs/data-driven/blockception/entity/behavior/components/drop_item_for.md
- <code>minecraft:behavior.eat_block</code>: refs/data-driven/blockception/entity/behavior/components/eat_block.md
- <code>minecraft:behavior.eat_carried_item</code>: refs/data-driven/blockception/entity/behavior/components/eat_carried_item.md
- <code>minecraft:behavior.eat_mob</code>: refs/data-driven/blockception/entity/behavior/components/eat_mob.md
- <code>minecraft:behavior.emerge</code>: refs/data-driven/blockception/entity/behavior/components/emerge.md
- <code>minecraft:behavior.enderman_leave_block</code>: refs/data-driven/blockception/entity/behavior/components/enderman_leave_block.md
- <code>minecraft:behavior.enderman_take_block</code>: refs/data-driven/blockception/entity/behavior/components/enderman_take_block.md
- <code>minecraft:behavior.equip_item</code>: refs/data-driven/blockception/entity/behavior/components/equip_item.md
- <code>minecraft:behavior.explore_outskirts</code>: refs/data-driven/blockception/entity/behavior/components/explore_outskirts.md
- <code>minecraft:behavior.fertilize_farm_block</code>: refs/data-driven/blockception/entity/behavior/components/fertilize_farm_block.md
- <code>minecraft:behavior.find_cover</code>: refs/data-driven/blockception/entity/behavior/components/find_cover.md
- <code>minecraft:behavior.find_mount</code>: refs/data-driven/blockception/entity/behavior/components/find_mount.md
- <code>minecraft:behavior.find_underwater_treasure</code>: refs/data-driven/blockception/entity/behavior/components/find_underwater_treasure.md
- <code>minecraft:behavior.fire_at_target</code>: refs/data-driven/blockception/entity/behavior/components/fire_at_target.md
- <code>minecraft:behavior.flee_sun</code>: refs/data-driven/blockception/entity/behavior/components/flee_sun.md
- <code>minecraft:behavior.float_wander</code>: refs/data-driven/blockception/entity/behavior/components/float_wander.md
- <code>minecraft:behavior.float</code>: refs/data-driven/blockception/entity/behavior/components/float.md
- <code>minecraft:behavior.follow_caravan</code>: refs/data-driven/blockception/entity/behavior/components/follow_caravan.md
- <code>minecraft:behavior.follow_mob</code>: refs/data-driven/blockception/entity/behavior/components/follow_mob.md
- <code>minecraft:behavior.follow_owner</code>: refs/data-driven/blockception/entity/behavior/components/follow_owner.md
- <code>minecraft:behavior.follow_parent</code>: refs/data-driven/blockception/entity/behavior/components/follow_parent.md
- <code>minecraft:behavior.follow_target_captain</code>: refs/data-driven/blockception/entity/behavior/components/follow_target_captain.md
- <code>minecraft:behavior.go_and_give_items_to_noteblock</code>: refs/data-driven/blockception/entity/behavior/components/go_and_give_items_to_noteblock.md
- <code>minecraft:behavior.go_and_give_items_to_owner</code>: refs/data-driven/blockception/entity/behavior/components/go_and_give_items_to_owner.md
- <code>minecraft:behavior.go_home</code>: refs/data-driven/blockception/entity/behavior/components/go_home.md
- <code>minecraft:behavior.guardian_attack</code>: refs/data-driven/blockception/entity/behavior/components/guardian_attack.md
- <code>minecraft:behavior.harvest_farm_block</code>: refs/data-driven/blockception/entity/behavior/components/harvest_farm_block.md
- <code>minecraft:behavior.hide</code>: refs/data-driven/blockception/entity/behavior/components/hide.md
- <code>minecraft:behavior.hold_ground</code>: refs/data-driven/blockception/entity/behavior/components/hold_ground.md
- <code>minecraft:behavior.hurt_by_target</code>: refs/data-driven/blockception/entity/behavior/components/hurt_by_target.md
- <code>minecraft:behavior.inspect_bookshelf</code>: refs/data-driven/blockception/entity/behavior/components/inspect_bookshelf.md
- <code>minecraft:behavior.investigate_suspicious_location</code>: refs/data-driven/blockception/entity/behavior/components/investigate_suspicious_location.md
- <code>minecraft:behavior.jump_around_target</code>: refs/data-driven/blockception/entity/behavior/components/jump_around_target.md
- <code>minecraft:behavior.jump_to_block</code>: refs/data-driven/blockception/entity/behavior/components/jump_to_block.md
- <code>minecraft:behavior.knockback_roar</code>: refs/data-driven/blockception/entity/behavior/components/knockback_roar.md
- <code>minecraft:behavior.lay_down</code>: refs/data-driven/blockception/entity/behavior/components/lay_down.md
- <code>minecraft:behavior.lay_egg</code>: refs/data-driven/blockception/entity/behavior/components/lay_egg.md
- <code>minecraft:behavior.leap_at_target</code>: refs/data-driven/blockception/entity/behavior/components/leap_at_target.md
- <code>minecraft:behavior.look_at_entity</code>: refs/data-driven/blockception/entity/behavior/components/look_at_entity.md
- <code>minecraft:behavior.look_at_player</code>: refs/data-driven/blockception/entity/behavior/components/look_at_player.md
- <code>minecraft:behavior.look_at_target</code>: refs/data-driven/blockception/entity/behavior/components/look_at_target.md
- <code>minecraft:behavior.look_at_trading_player</code>: refs/data-driven/blockception/entity/behavior/components/look_at_trading_player.md
- <code>minecraft:behavior.make_love</code>: refs/data-driven/blockception/entity/behavior/components/make_love.md
- <code>minecraft:behavior.melee_attack</code>: refs/data-driven/blockception/entity/behavior/components/melee_attack.md
- <code>minecraft:behavior.melee_box_attack</code>: refs/data-driven/blockception/entity/behavior/components/melee_box_attack.md
- <code>minecraft:behavior.mingle</code>: refs/data-driven/blockception/entity/behavior/components/mingle.md
- <code>minecraft:behavior.mount_pathing</code>: refs/data-driven/blockception/entity/behavior/components/mount_pathing.md
- <code>minecraft:behavior.move_indoors</code>: refs/data-driven/blockception/entity/behavior/components/move_indoors.md
- <code>minecraft:behavior.move_outdoors</code>: refs/data-driven/blockception/entity/behavior/components/move_outdoors.md
- <code>minecraft:behavior.move_through_village</code>: refs/data-driven/blockception/entity/behavior/components/move_through_village.md
- <code>minecraft:behavior.move_to_block</code>: refs/data-driven/blockception/entity/behavior/components/move_to_block.md
- <code>minecraft:behavior.move_to_land</code>: refs/data-driven/blockception/entity/behavior/components/move_to_land.md
- <code>minecraft:behavior.move_to_lava</code>: refs/data-driven/blockception/entity/behavior/components/move_to_lava.md
- <code>minecraft:behavior.move_to_liquid</code>: refs/data-driven/blockception/entity/behavior/components/move_to_liquid.md
- <code>minecraft:behavior.move_to_poi</code>: refs/data-driven/blockception/entity/behavior/components/move_to_poi.md
- <code>minecraft:behavior.move_to_random_block</code>: refs/data-driven/blockception/entity/behavior/components/move_to_random_block.md
- <code>minecraft:behavior.move_to_village</code>: refs/data-driven/blockception/entity/behavior/components/move_to_village.md
- <code>minecraft:behavior.move_to_water</code>: refs/data-driven/blockception/entity/behavior/components/move_to_water.md
- <code>minecraft:behavior.move_towards_dwelling_restriction</code>: refs/data-driven/blockception/entity/behavior/components/move_towards_dwelling_restriction.md
- <code>minecraft:behavior.move_towards_home_restriction</code>: refs/data-driven/blockception/entity/behavior/components/move_towards_home_restriction.md
- <code>minecraft:behavior.move_towards_restriction</code>: refs/data-driven/blockception/entity/behavior/components/move_towards_restriction.md
- <code>minecraft:behavior.move_towards_target</code>: refs/data-driven/blockception/entity/behavior/components/move_towards_target.md
- <code>minecraft:behavior.nap</code>: refs/data-driven/blockception/entity/behavior/components/nap.md
- <code>minecraft:behavior.nearest_attackable_target</code>: refs/data-driven/blockception/entity/behavior/components/nearest_attackable_target.md
- <code>minecraft:behavior.nearest_prioritized_attackable_target</code>: refs/data-driven/blockception/entity/behavior/components/nearest_prioritized_attackable_target.md
- <code>minecraft:behavior.ocelot_sit_on_block</code>: refs/data-driven/blockception/entity/behavior/components/ocelot_sit_on_block.md
- <code>minecraft:behavior.ocelotattack</code>: refs/data-driven/blockception/entity/behavior/components/ocelotattack.md
- <code>minecraft:behavior.offer_flower</code>: refs/data-driven/blockception/entity/behavior/components/offer_flower.md
- <code>minecraft:behavior.open_door</code>: refs/data-driven/blockception/entity/behavior/components/open_door.md
- <code>minecraft:behavior.owner_hurt_by_target</code>: refs/data-driven/blockception/entity/behavior/components/owner_hurt_by_target.md
- <code>minecraft:behavior.owner_hurt_target</code>: refs/data-driven/blockception/entity/behavior/components/owner_hurt_target.md
- <code>minecraft:behavior.panic</code>: refs/data-driven/blockception/entity/behavior/components/panic.md
- <code>minecraft:behavior.pet_sleep_with_owner</code>: refs/data-driven/blockception/entity/behavior/components/pet_sleep_with_owner.md
- <code>minecraft:behavior.pickup_items</code>: refs/data-driven/blockception/entity/behavior/components/pickup_items.md
- <code>minecraft:behavior.play_dead</code>: refs/data-driven/blockception/entity/behavior/components/play_dead.md
- <code>minecraft:behavior.play</code>: refs/data-driven/blockception/entity/behavior/components/play.md
- <code>minecraft:behavior.player_ride_tamed</code>: refs/data-driven/blockception/entity/behavior/components/player_ride_tamed.md
- <code>minecraft:behavior.raid_garden</code>: refs/data-driven/blockception/entity/behavior/components/raid_garden.md
- <code>minecraft:behavior.ram_attack</code>: refs/data-driven/blockception/entity/behavior/components/ram_attack.md
- <code>minecraft:behavior.random_breach</code>: refs/data-driven/blockception/entity/behavior/components/random_breach.md
- <code>minecraft:behavior.random_fly</code>: refs/data-driven/blockception/entity/behavior/components/random_fly.md
- <code>minecraft:behavior.random_hover</code>: refs/data-driven/blockception/entity/behavior/components/random_hover.md
- <code>minecraft:behavior.random_look_around_and_sit</code>: refs/data-driven/blockception/entity/behavior/components/random_look_around_and_sit.md
- <code>minecraft:behavior.random_look_around</code>: refs/data-driven/blockception/entity/behavior/components/random_look_around.md
- <code>minecraft:behavior.random_search_and_dig</code>: refs/data-driven/blockception/entity/behavior/components/random_search_and_dig.md
- <code>minecraft:behavior.random_sitting</code>: refs/data-driven/blockception/entity/behavior/components/random_sitting.md
- <code>minecraft:behavior.random_stroll</code>: refs/data-driven/blockception/entity/behavior/components/random_stroll.md
- <code>minecraft:behavior.random_swim</code>: refs/data-driven/blockception/entity/behavior/components/random_swim.md
- <code>minecraft:behavior.ranged_attack</code>: refs/data-driven/blockception/entity/behavior/components/ranged_attack.md
- <code>minecraft:behavior.receive_love</code>: refs/data-driven/blockception/entity/behavior/components/receive_love.md
- <code>minecraft:behavior.restrict_open_door</code>: refs/data-driven/blockception/entity/behavior/components/restrict_open_door.md
- <code>minecraft:behavior.restrict_sun</code>: refs/data-driven/blockception/entity/behavior/components/restrict_sun.md
- <code>minecraft:behavior.rise_to_liquid_level</code>: refs/data-driven/blockception/entity/behavior/components/rise_to_liquid_level.md
- <code>minecraft:behavior.roar</code>: refs/data-driven/blockception/entity/behavior/components/roar.md
- <code>minecraft:behavior.roll</code>: refs/data-driven/blockception/entity/behavior/components/roll.md
- <code>minecraft:behavior.run_around_like_crazy</code>: refs/data-driven/blockception/entity/behavior/components/run_around_like_crazy.md
- <code>minecraft:behavior.scared</code>: refs/data-driven/blockception/entity/behavior/components/scared.md
- <code>minecraft:behavior.send_event</code>: refs/data-driven/blockception/entity/behavior/components/send_event.md
- <code>minecraft:behavior.share_items</code>: refs/data-driven/blockception/entity/behavior/components/share_items.md
- <code>minecraft:behavior.silverfish_merge_with_stone</code>: refs/data-driven/blockception/entity/behavior/components/silverfish_merge_with_stone.md
- <code>minecraft:behavior.silverfish_wake_up_friends</code>: refs/data-driven/blockception/entity/behavior/components/silverfish_wake_up_friends.md
- <code>minecraft:behavior.skeleton_horse_trap</code>: refs/data-driven/blockception/entity/behavior/components/skeleton_horse_trap.md
- <code>minecraft:behavior.sleep</code>: refs/data-driven/blockception/entity/behavior/components/sleep.md
- <code>minecraft:behavior.slime_attack</code>: refs/data-driven/blockception/entity/behavior/components/slime_attack.md
- <code>minecraft:behavior.slime_float</code>: refs/data-driven/blockception/entity/behavior/components/slime_float.md
- <code>minecraft:behavior.slime_keep_on_jumping</code>: refs/data-driven/blockception/entity/behavior/components/slime_keep_on_jumping.md
- <code>minecraft:behavior.slime_random_direction</code>: refs/data-driven/blockception/entity/behavior/components/slime_random_direction.md
- <code>minecraft:behavior.snacking</code>: refs/data-driven/blockception/entity/behavior/components/snacking.md
- <code>minecraft:behavior.sneeze</code>: refs/data-driven/blockception/entity/behavior/components/sneeze.md
- <code>minecraft:behavior.sniff</code>: refs/data-driven/blockception/entity/behavior/components/sniff.md
- <code>minecraft:behavior.sonic_boom</code>: refs/data-driven/blockception/entity/behavior/components/sonic_boom.md
- <code>minecraft:behavior.squid_dive</code>: refs/data-driven/blockception/entity/behavior/components/squid_dive.md
- <code>minecraft:behavior.squid_flee</code>: refs/data-driven/blockception/entity/behavior/components/squid_flee.md
- <code>minecraft:behavior.squid_idle</code>: refs/data-driven/blockception/entity/behavior/components/squid_idle.md
- <code>minecraft:behavior.squid_move_away_from_ground</code>: refs/data-driven/blockception/entity/behavior/components/squid_move_away_from_ground.md
- <code>minecraft:behavior.squid_out_of_water</code>: refs/data-driven/blockception/entity/behavior/components/squid_out_of_water.md
- <code>minecraft:behavior.stalk_and_pounce_on_target</code>: refs/data-driven/blockception/entity/behavior/components/stalk_and_pounce_on_target.md
- <code>minecraft:behavior.stay_near_noteblock</code>: refs/data-driven/blockception/entity/behavior/components/stay_near_noteblock.md
- <code>minecraft:behavior.stay_while_sitting</code>: refs/data-driven/blockception/entity/behavior/components/stay_while_sitting.md
- <code>minecraft:behavior.stomp_attack</code>: refs/data-driven/blockception/entity/behavior/components/stomp_attack.md
- <code>minecraft:behavior.stomp_turtle_egg</code>: refs/data-driven/blockception/entity/behavior/components/stomp_turtle_egg.md
- <code>minecraft:behavior.stroll_towards_village</code>: refs/data-driven/blockception/entity/behavior/components/stroll_towards_village.md
- <code>minecraft:behavior.summon_entity</code>: refs/data-driven/blockception/entity/behavior/components/summon_entity.md
- <code>minecraft:behavior.swell</code>: refs/data-driven/blockception/entity/behavior/components/swell.md
- <code>minecraft:behavior.swim_idle</code>: refs/data-driven/blockception/entity/behavior/components/swim_idle.md
- <code>minecraft:behavior.swim_up_for_breath</code>: refs/data-driven/blockception/entity/behavior/components/swim_up_for_breath.md
- <code>minecraft:behavior.swim_wander</code>: refs/data-driven/blockception/entity/behavior/components/swim_wander.md
- <code>minecraft:behavior.swim_with_entity</code>: refs/data-driven/blockception/entity/behavior/components/swim_with_entity.md
- <code>minecraft:behavior.swoop_attack</code>: refs/data-driven/blockception/entity/behavior/components/swoop_attack.md
- <code>minecraft:behavior.take_flower</code>: refs/data-driven/blockception/entity/behavior/components/take_flower.md
- <code>minecraft:behavior.teleport_to_owner</code>: refs/data-driven/blockception/entity/behavior/components/teleport_to_owner.md
- <code>minecraft:behavior.move_around_target</code>: refs/data-driven/blockception/entity/behavior/components/move_around_target.md
- <code>minecraft:behavior.target_when_pushed</code>: refs/data-driven/blockception/entity/behavior/components/target_when_pushed.md
- <code>minecraft:behavior.tempt</code>: refs/data-driven/blockception/entity/behavior/components/tempt.md
- <code>minecraft:behavior.timer_flag_1</code>: refs/data-driven/blockception/entity/behavior/components/timer_flag.md
- <code>minecraft:behavior.timer_flag_2</code>: refs/data-driven/blockception/entity/behavior/components/timer_flag.md
- <code>minecraft:behavior.timer_flag_3</code>: refs/data-driven/blockception/entity/behavior/components/timer_flag.md
- <code>minecraft:behavior.trade_interest</code>: refs/data-driven/blockception/entity/behavior/components/trade_interest.md
- <code>minecraft:behavior.trade_with_player</code>: refs/data-driven/blockception/entity/behavior/components/trade_with_player.md
- <code>minecraft:behavior.vex_copy_owner_target</code>: refs/data-driven/blockception/entity/behavior/components/vex_copy_owner_target.md
- <code>minecraft:behavior.vex_random_move</code>: refs/data-driven/blockception/entity/behavior/components/vex_random_move.md
- <code>minecraft:behavior.wither_random_attack_pos_goal</code>: refs/data-driven/blockception/entity/behavior/components/wither_random_attack_pos_goal.md
- <code>minecraft:behavior.wither_target_highest_damage</code>: refs/data-driven/blockception/entity/behavior/components/wither_target_highest_damage.md
- <code>minecraft:behavior.work</code>: refs/data-driven/blockception/entity/behavior/components/work.md
- <code>minecraft:behavior.work_composter</code>: refs/data-driven/blockception/entity/behavior/components/work_composter.md
- refs/data-driven/blockception/entity/behavior/filter.md
- refs/data-driven/blockception/entity/behavior/animation.md
- refs/data-driven/blockception/entity/behavior/animation-controller.md
- 资源定义:
- refs/data-driven/blockception/entity/resource/index.md
- refs/data-driven/blockception/entity/resource/animation.md
- refs/data-driven/blockception/entity/resource/animation-controller.md
- 生成规则:
- 定义:
- refs/data-driven/blockception/spawn-rule/definition/index.md
- 生物群系:
- 行为定义:
- refs/data-driven/blockception/biome/behavior/index.md
- 资源定义:
- refs/data-driven/blockception/biome/resource/index.md
- 地物:
- 定义:
- refs/data-driven/blockception/feature/definition/index.md
- 地物规则:
- 定义:
- refs/data-driven/blockception/feature-rule/definition/index.md
- 条件:
- <code>minecraft:biome_filter</code>: refs/data-driven/blockception/feature-rule/definition/conditions/filters.md
- 配方:
- 定义:
- refs/data-driven/blockception/recipe/definition/index.md
- 战利品表:
- 定义:
- refs/data-driven/blockception/loot-table/definition/index.md
- 交易:
- 定义:
- refs/data-driven/blockception/trading/definition/index.md
- 对话:
- 定义:
- refs/data-driven/blockception/dialogue/definition/index.md
- 函数:
- 滴答:
- refs/data-driven/blockception/function/tick/index.md
- 迷雾:
- 定义:
- refs/data-driven/blockception/fog/definition/index.md
- 粒子:
- 定义:
- refs/data-driven/blockception/particle/definition/index.md
- 组件:
- <code>minecraft:emitter_initialization</code>: refs/data-driven/blockception/particle/definition/components/emitter_initialization.md
- <code>minecraft:emitter_lifetime_events</code>: refs/data-driven/blockception/particle/definition/components/emitter_lifetime_events.md
- <code>minecraft:emitter_lifetime_expression</code>: refs/data-driven/blockception/particle/definition/components/emitter_lifetime_expression.md
- <code>minecraft:emitter_lifetime_once</code>: refs/data-driven/blockception/particle/definition/components/emitter_lifetime_once.md
- <code>minecraft:emitter_lifetime_looping</code>: refs/data-driven/blockception/particle/definition/components/emitter_lifetime_looping.md
- <code>minecraft:emitter_local_space</code>: refs/data-driven/blockception/particle/definition/components/emitter_local_space.md
- <code>minecraft:emitter_rate_instant</code>: refs/data-driven/blockception/particle/definition/components/emitter_rate_instant.md
- <code>minecraft:emitter_rate_manual</code>: refs/data-driven/blockception/particle/definition/components/emitter_rate_manual.md
- <code>minecraft:emitter_rate_steady</code>: refs/data-driven/blockception/particle/definition/components/emitter_rate_steady.md
- <code>minecraft:emitter_shape_box</code>: refs/data-driven/blockception/particle/definition/components/emitter_shape_box.md
- <code>minecraft:emitter_shape_custom</code>: refs/data-driven/blockception/particle/definition/components/emitter_shape_custom.md
- <code>minecraft:emitter_shape_disc</code>: refs/data-driven/blockception/particle/definition/components/emitter_shape_disc.md
- <code>minecraft:emitter_shape_entity_aabb</code>: refs/data-driven/blockception/particle/definition/components/emitter_shape_entity_aabb.md
- <code>minecraft:emitter_shape_point</code>: refs/data-driven/blockception/particle/definition/components/emitter_shape_point.md
- <code>minecraft:emitter_shape_sphere</code>: refs/data-driven/blockception/particle/definition/components/emitter_shape_sphere.md
- <code>minecraft:particle_appearance_billboard</code>: refs/data-driven/blockception/particle/definition/components/particle_appearance_billboard.md
- <code>minecraft:particle_appearance_tinting</code>: refs/data-driven/blockception/particle/definition/components/particle_appearance_tinting.md
- <code>minecraft:particle_appearance_lighting</code>: refs/data-driven/blockception/particle/definition/components/particle_appearance_lighting.md
- <code>minecraft:particle_expire_if_not_in_blocks</code>: refs/data-driven/blockception/particle/definition/components/particle_expire_if_not_in_blocks.md
- <code>minecraft:particle_expire_if_in_blocks</code>: refs/data-driven/blockception/particle/definition/components/particle_expire_if_in_blocks.md
- <code>minecraft:particle_initialization</code>: refs/data-driven/blockception/particle/definition/components/particle_initialization.md
- <code>minecraft:particle_initial_speed</code>: refs/data-driven/blockception/particle/definition/components/particle_initial_speed.md
- <code>minecraft:particle_initial_spin</code>: refs/data-driven/blockception/particle/definition/components/particle_initial_spin.md
- <code>minecraft:particle_lifetime_expression</code>: refs/data-driven/blockception/particle/definition/components/particle_lifetime_expression.md
- <code>minecraft:particle_lifetime_events</code>: refs/data-driven/blockception/particle/definition/components/particle_lifetime_events.md
- <code>minecraft:particle_kill_plane</code>: refs/data-driven/blockception/particle/definition/components/particle_kill_plane.md
- <code>minecraft:particle_motion_collision</code>: refs/data-driven/blockception/particle/definition/components/particle_motion_collision.md
- <code>minecraft:particle_motion_dynamic</code>: refs/data-driven/blockception/particle/definition/components/particle_motion_dynamic.md
- <code>minecraft:particle_motion_parametric</code>: refs/data-driven/blockception/particle/definition/components/particle_motion_parametric.md
- 方块剔除:
- 定义:
- refs/data-driven/blockception/block_culling/definition/index.md
- 附着物:
- 定义:
- refs/data-driven/blockception/attachable/definition/index.md
- 几何:
- 定义:
- refs/data-driven/blockception/geometry/definition/index.md
- 渲染控制器:
- 定义:
- refs/data-driven/blockception/render_controller/definition/index.md
- 材质:
- 定义:
- refs/data-driven/blockception/material/definition/index.md
- 声音:
- 音效:
- refs/data-driven/blockception/sounds/sound/index.md
- 音乐:
- refs/data-driven/blockception/sounds/music/index.md
- 纹理:
- 纹理列表:
- refs/data-driven/blockception/texture/texture-list/index.md
- 纹理集:
- refs/data-driven/blockception/texture/texture-set/index.md
- 方块纹理:
- refs/data-driven/blockception/texture/terrain-texture/index.md
- 物品纹理:
- refs/data-driven/blockception/texture/item-texture/index.md
- 翻书纹理:
- refs/data-driven/blockception/texture/flipbook-texture/index.md
- UI纹理:
- refs/data-driven/blockception/texture/ui-texture/index.md
- UI:
- 定义:
- refs/data-driven/blockception/ui/definition/index.md
- 文件列表: