Skip to content

Commit 5aa1aee

Browse files
Merge branch 'main' into patch-1
2 parents e8c7a17 + 0b56613 commit 5aa1aee

File tree

1,015 files changed

+12790
-13214
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,015 files changed

+12790
-13214
lines changed

.github/actions/quality-checks/action.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,23 @@ description: Reusable action for running the quality checks
33
inputs:
44
BASE_BRANCH:
55
description: Base branch
6+
CHECK_LOCALIZED_CONTENT:
7+
description: Whether to check localized content
8+
CHECK_MARKDOWN_LINT:
9+
description: Whether to check markdown lint
610
CHECK_PROTECTED_FIELDS:
711
description: Whether to check protected YAML fields
12+
CHECK_RELATIVE_LINKS:
13+
description: Whether to check relative links
14+
CHECK_RETEXT_ANALYSIS:
15+
description: Whether to check retext analysis
816
COMMIT_HASH:
917
description: Commit hash
1018
EVENT_NAME:
1119
description: Github event name
1220
GITHUB_PAT:
1321
description: Github token
14-
POST_PULL_REQUEST_COMMENTS:
22+
POST_PULL_REQUEST_COMMENTS:
1523
description: Whether to post comments on the pull request
1624
PULL_REQUEST_NUMBER:
1725
description: Pull request number
@@ -40,7 +48,11 @@ runs:
4048
env:
4149
GITHUB_PAT: ${{ inputs.GITHUB_PAT }}
4250
BASE_BRANCH: ${{ inputs.BASE_BRANCH }}
51+
CHECK_LOCALIZED_CONTENT: ${{ inputs.CHECK_LOCALIZED_CONTENT }}
52+
CHECK_MARKDOWN_LINT: ${{ inputs.CHECK_MARKDOWN_LINT }}
4353
CHECK_PROTECTED_FIELDS: ${{ inputs.CHECK_PROTECTED_FIELDS }}
54+
CHECK_RELATIVE_LINKS: ${{ inputs.CHECK_RELATIVE_LINKS }}
55+
CHECK_RETEXT_ANALYSIS: ${{ inputs.CHECK_RETEXT_ANALYSIS }}
4456
COMMIT_HASH: ${{ inputs.COMMIT_HASH }}
4557
POST_PULL_REQUEST_COMMENTS: ${{ inputs.POST_PULL_REQUEST_COMMENTS }}
4658
PULL_REQUEST_NUMBER: ${{ inputs.PULL_REQUEST_NUMBER }}

.github/labeler.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,18 @@ engine reference:
4949
- 'content/en-us/reference/engine/**/*'
5050
- 'content/common/navigation/engine/reference.yaml'
5151

52-
navigation:
53-
- 'content/common/navigation/**/*'
54-
5552
cloud:
5653
- 'content/en-us/cloud/**/*'
5754
- 'content/en-us/assets/open-cloud/**/*'
5855
- 'content/en-us/reference/cloud/**/*'
5956
- 'content/common/navigation/cloud/**/*'
6057

58+
localization:
59+
- any: ['content/**/*', '!content/en-us/**', '!content/common/**']
60+
61+
navigation:
62+
- 'content/common/navigation/**/*'
63+
6164
resources:
6265
- 'content/en-us/resources/**/*'
6366
- 'content/common/navigation/engine/resources.yaml'

.github/workflows/content-checks.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ jobs:
7373
with:
7474
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
7575
BASE_BRANCH: origin/main
76+
CHECK_LOCALIZED_CONTENT: false
77+
CHECK_MARKDOWN_LINT: true
7678
CHECK_PROTECTED_FIELDS: true
79+
CHECK_RELATIVE_LINKS: true
80+
CHECK_RETEXT_ANALYSIS: true
7781
COMMIT_HASH: ${{ github.event.pull_request.head.sha }}
7882
EVENT_NAME: ${{ github.event_name }}
7983
POST_PULL_REQUEST_COMMENTS: true

.gitignore

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
1-
# Only English content is included in the repository
2-
# Ignore everything under 'content/'
3-
content/**
4-
# Do not ignore the 'content/common/' and 'content/en-us/' directories
5-
!content/common/
6-
!content/en-us/
7-
# Do not ignore any files and directories under 'content/common/' and 'content/en-us/'
8-
!content/common/**
9-
!content/en-us/**
10-
111
# Folders
122
**/node_modules/
13-
tools/output/
3+
**output/
4+
**dist/
145

156
# Files
167
.DS_Store
17-
.env
8+
**.env

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ representative at an online or offline event.
5959
## Enforcement
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62-
reported to the community leaders responsible for enforcement at
63-
<[email protected]>. All complaints will be reviewed and investigated
62+
reported to the community leaders responsible for enforcement using GitHub's
63+
**Report content** form. All complaints will be reviewed and investigated
6464
promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the
Lines changed: 45 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
11
navigation:
2-
- title: Getting Started
2+
- title: Get started
33
path: /avatar/
44

5+
- heading: Classic clothing
6+
section:
7+
- title: Overview
8+
path: /art/classic-clothing
9+
- title: Test in Studio
10+
path: /art/test-classic-clothing
11+
- title: Upload and sell
12+
path: /art/upload-classic-clothing
13+
514
- heading: Accessories
615
section:
716
- title: Overview
817
path: /art/accessories/
918
- title: Specifications
1019
path: /art/accessories/specifications
11-
- title: Body Scale
20+
- title: Body scale
1221
path: /art/accessories/body-scale
13-
- title: Export Settings
22+
- title: Export settings
1423
path: /art/accessories/export-settings
15-
- title: Importing into Studio
24+
- title: Import into Studio
1625
path: /art/accessories/importing
1726

1827
- heading: Clothing
@@ -21,79 +30,79 @@ navigation:
2130
path: /art/accessories/layered-clothing
2231
- title: Specifications
2332
path: /art/accessories/clothing-specifications
24-
- title: Reference Files
33+
- title: Reference files
2534
path: /art/accessories/project-files
26-
- title: Caging Best Practices
35+
- title: Caging
2736
path: /art/accessories/caging-best-practices
28-
- title: Export Settings
37+
- title: Export settings
2938
path: /art/accessories/clothing-export-settings
30-
- title: Importing into Studio
31-
path: /art/accessories/importing-clothing
32-
- title: Classic Clothing
33-
path: /art/accessories/classic-clothing
39+
- title: Import into Studio
40+
path: /art/accessories/import-clothing
3441

3542
- heading: Characters
3643
- title: Overview
3744
path: /art/characters/
3845
- title: Specifications
3946
path: /art/characters/specifications
40-
- title: Reference Files
47+
- title: Reference files
4148
path: /art/characters/project-files
42-
- title: Export Settings
49+
- title: Export settings
4350
path: /art/characters/export-settings
44-
- title: Importing into Studio
45-
path: /art/characters/importing
51+
- title: Import into Studio
52+
path: /art/characters/import
4653
- title: Heads
4754
path: /art/characters/facial-animation/
4855
section:
4956
- title: Overview
5057
path: /art/characters/facial-animation/
51-
- title: Using Heads in Studio
52-
path: /art/characters/facial-animation/using-heads-in-studio
53-
- title: Animating Heads
54-
path: /art/characters/facial-animation/animating-heads
58+
- title: In Studio
59+
path: /art/characters/facial-animation/use-heads-in-studio
60+
- title: Head animation
61+
path: /art/characters/facial-animation/animate-heads
5562
- title: Moods
5663
path: /art/characters/facial-animation/moods
57-
- title: FACS Poses Reference
64+
- title: FACS poses reference
5865
path: /art/characters/facial-animation/facs-poses-reference
66+
- title: In-experience creation
67+
path: /avatar/in-experience-creation
5968

60-
- heading: Publishing and Selling
61-
- title: Marketplace Overview
69+
- heading: Publishing and selling
70+
- title: Overview
6271
path: /marketplace/
63-
- title: Policies and Guidelines
72+
- title: Policies and guidelines
6473
path: /marketplace/marketplace-policy
6574
section:
66-
- title: Marketplace Policy
75+
- title: Marketplace policy
6776
path: /marketplace/marketplace-policy
68-
- title: Intellectual Property
77+
- title: Intellectual property
6978
path: /marketplace/intellectual-property
7079
- title: Moderation
7180
path: /marketplace/moderation
72-
- title: Uploading and Publishing
73-
path: /marketplace/publishing-to-marketplace
74-
- title: Marketplace Fees and Commissions
81+
- title: Publish to Marketplace
82+
path: /marketplace/publish-to-marketplace
83+
- title: Fees and commissions
7584
path: /marketplace/marketplace-fees-and-commissions
7685
- title: UGC Homestore
7786
path: /marketplace/homestore
78-
- title: Frequently Asked Questions
87+
- title: FAQ
7988
path: /marketplace/frequently-asked-questions
8089

81-
- heading: Studio Tools
90+
- heading: Studio tools
8291
- title: 3D Importer
8392
path: /art/modeling/3d-importer
84-
- title: Accessory Fitting Tool
93+
- title: Accessory Fitting
8594
path: /art/accessories/accessory-fitting-tool
8695
- title: Avatar Setup
8796
path: /art/modeling/avatar-setup
88-
- title: Automatic Skinning
97+
- title: Automatic Skinning Transfer
8998
path: /art/accessories/automatic-skinning-transfer
90-
- title: Custom Thumbnails
99+
- title: Thumbnails
91100
path: /marketplace/custom-thumbnails
92101

93-
- heading: Third Party Add-ons
94-
- title: Roblox Blender Plugin
102+
- heading: Third party add-ons
103+
- title: Roblox Blender plugin
95104
path: /art/modeling/roblox-blender-plugin
96105
- title: Calisthenics Tool
97106
path: /art/modeling/calisthenics-tool
98-
- title: Validation Tool
107+
- title: Clothing Validation Tool
99108
path: /art/accessories/validation-tool
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
backTo:
2-
title: Back to Avatar Tutorials
2+
title: Back to avatar tutorials
33
path: /avatar/tutorials/
44
navigation:
55
- title: Overview
66
path: /art/accessories/creating-rigid/
7-
- heading: Modeling
8-
- title: Box Modeling
7+
- heading: Model
8+
- title: Box modeling
99
path: /art/accessories/creating-rigid/modeling-setup
10-
- heading: Texturing
11-
- title: Texture Painting
10+
- heading: Texture
11+
- title: Texture painting
1212
path: /art/accessories/creating-rigid/texturing
13-
- heading: Exporting
14-
- title: Exporting from Blender
13+
- heading: Export
14+
- title: Export from Blender
1515
path: /art/accessories/creating-rigid/exporting
16-
- heading: Importing into Studio
17-
- title: Using Studio's 3D Importer
16+
- heading: Import
17+
- title: Use Studio's 3D importer
1818
path: /art/accessories/creating-rigid/importing
19-
- title: Converting to Accessory
19+
- title: Convert to accessory
2020
path: /art/accessories/creating-rigid/converting
21-
- heading: Publishing to Marketplace
22-
- title: Upload and Publishing
21+
- heading: Publish
22+
- title: Upload and publish
2323
path: /art/accessories/creating-rigid/publishing
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
backTo:
2-
title: Back to Avatar Tutorials
2+
title: Back to avatar tutorials
33
path: /avatar/tutorials/
44
navigation:
55
- heading: Overview
6-
- title: Avatar Creation
6+
- title: Avatar creation
77
path: /art/characters/creating/
8-
- heading: Project Setup
9-
- title: Template Files
8+
- heading: Project setup
9+
- title: Template files
1010
path: /art/characters/creating/template-files
11-
- title: Extra Head Objects
11+
- title: Extra head objects
1212
path: /art/characters/creating/head-objects
13-
- title: Blender Configurations
13+
- title: Blender configurations
1414
path: /art/characters/creating/blender-configurations
1515

1616
- heading: Modeling
17-
- title: Best Practices
17+
- title: Best practices
1818
path: /art/characters/creating/modeling-best-practices
19-
- title: Tips and Settings
19+
- title: Tips and settings
2020
path: /art/characters/creating/modeling-tips
21-
- title: Sculpting
21+
- title: Sculpt
2222
path: /art/characters/creating/sculpting
2323

2424
- heading: Texturing
25-
- title: Texture Painting Setup
25+
- title: Texture painting setup
2626
path: /art/characters/creating/texturing-setup
27-
- title: Texturing Eyes
27+
- title: Texturing eyes
2828
path: /art/characters/creating/texturing-eyes
29-
- title: Texturing Face
29+
- title: Texturing face
3030
path: /art/characters/creating/texturing-face
31-
- title: PBR Textures (Optional)
31+
- title: PBR textures (optional)
3232
path: /art/characters/creating/texturing-pbr
3333

3434
- heading: Caging
35-
- title: Caging Character Head
35+
- title: Caging character head
3636
path: /art/characters/creating/caging
3737

3838
- heading: Cleanup
39-
- title: Combining Head Geometry
40-
path: /art/characters/creating/combining-head-geometry
41-
- title: Removing Extra Bones
42-
path: /art/characters/creating/removing-extra-bones
43-
- title: Verifying Attachments
44-
path: /art/characters/creating/verifying-attachments
45-
- title: Final Checks
39+
- title: Combine head geometry
40+
path: /art/characters/creating/combine-head-geometry
41+
- title: Remove extra bones
42+
path: /art/characters/creating/remove-extra-bones
43+
- title: Verify attachments
44+
path: /art/characters/creating/verify-attachments
45+
- title: Final checks
4646
path: /art/characters/creating/final-checks
4747

48-
- heading: Exporting
49-
- title: Embedding and Exporting Textures
50-
path: /art/characters/creating/exporting-textures
51-
- title: Exporting Character Model
52-
path: /art/characters/creating/exporting-character
48+
- heading: Export
49+
- title: Embed and export textures
50+
path: /art/characters/creating/export-textures
51+
- title: Export character model
52+
path: /art/characters/creating/export-character

0 commit comments

Comments
 (0)