Skip to content

Commit c093895

Browse files
committed
init
0 parents  commit c093895

File tree

114 files changed

+3554
-0
lines changed

Some content is hidden

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

114 files changed

+3554
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**Files**
14+
15+
Attach or link to .glb files or avatar URL that trigger the bug.
16+
17+
In addition, make sure to run those files through the example scenes first. If you encounter errors or warnings, try to make sure they are not responsible for the issue.
18+
19+
> Note: You have to ZIP archive them first in order for GitHub to accept the upload.
20+
If your files are confidential:
21+
22+
- Try to create a similar, but intellectual-property-free Unity example project or build that reproduces the bug in the same way (so any community member can have a look)
23+
- Otherwise, still create this issue and send the files (or a link to them) discretely via email
24+
25+
**To Reproduce**
26+
Steps to reproduce the behavior:
27+
1. Go to '...'
28+
2. Click on '....'
29+
3. Scroll down to '....'
30+
4. See error
31+
32+
**Expected behavior**
33+
A clear and concise description of what you expected to happen.
34+
35+
**Screenshots**
36+
If applicable, add screenshots to help explain your problem.
37+
38+
**Desktop (please complete the following information):**
39+
- Ready Player Me Core version
40+
- Ready Player Me Avatar Loader version
41+
- Ready Player Me WebView version
42+
- glTFast version
43+
- Unity Editor version [e.g. 2021.2.1f1]
44+
- Render Pipeline and version [e.g. Universal Render Pipeline 12.0]
45+
- Operating System [e.g. Windows, Mac, Linux ]
46+
- Platform: [e.g. Editor , Windows Player, iOS]
47+
48+
additionally (if significant for the bug):
49+
50+
- Device: [e.g. iPhone6]
51+
- OS: [e.g. iOS8.1]
52+
- For WebGL: Browser [e.g. stock browser, safari]
53+
54+
**Additional context**
55+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. e.g. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/pull_request_template.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!-- Copy the TICKETID for this task from Monday and add it to the PR name in brackets -->
2+
<!-- PR name should look like: [TICKETID] My Pull Request -->
3+
4+
<!-- Add link for the ticket here editing the TICKETID-->
5+
6+
## [TICKETID](https://ready-player-me.monday.com/boards/2563815861/pulses/TICKETID)
7+
8+
## Description
9+
10+
- Briefly describe what this change will do
11+
12+
<!-- Fill the section below with Added, Updated and Removed information. -->
13+
<!-- If there is no item under one of the lists remove it's title. -->
14+
15+
## Changes
16+
17+
#### Added
18+
19+
- List your additions and new features here.
20+
21+
#### Updated
22+
23+
- List your updates and changes here.
24+
25+
#### Removed
26+
27+
- List what is removed here.
28+
29+
<!-- Testability -->
30+
31+
## How to Test
32+
33+
- Add steps to locally test these changes
34+
35+
<!-- Update your progress with the task here -->
36+
37+
## Checklist
38+
39+
- [ ] Tests written or updated for the changes.
40+
- [ ] Documentation is updated.
41+
- [ ] Changelog is updated.
42+
- [ ] QA Testing is updated.
43+
44+
## QA Testing
45+
46+
- Mention any useful test cases for this feature and add to QA Testing documentation.
47+
48+
## Details
49+
50+
- If more details are necessary to support the description with images and videos add them here.
51+
52+
<!--- Remember to copy the Changes Section into the commit message when you close the PR -->
53+
54+
55+

.github/workflows.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/pr-test-runner.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: PR test runner
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
types: [ opened, reopened ]
7+
8+
jobs:
9+
runAllTests:
10+
name: ${{ matrix.unityVersion }} ${{ matrix.testMode }} tests
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 15
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
testMode:
17+
- playmode
18+
- editmode
19+
unityVersion:
20+
- 2020.3.0f1
21+
steps:
22+
- name: Checkout Unity-SDK Repository
23+
uses: actions/checkout@v3
24+
with:
25+
repository: "readyplayerme/Unity-SDK"
26+
submodules: true
27+
fetch-depth: 0
28+
ref: develop
29+
token: ${{ secrets.DEV_SDK_TOKEN }}
30+
- name: Checkout submodule branch
31+
run: |
32+
cd ${{ secrets.CORE_PATH }}
33+
git fetch -a
34+
git checkout ${{ github.event.pull_request.head.ref }}
35+
git pull origin ${{ github.event.pull_request.head.ref }}
36+
37+
- name: Cache Project
38+
uses: actions/cache@v3
39+
with:
40+
path: Library
41+
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
42+
restore-keys: |
43+
Library-
44+
45+
- name: Run Tests
46+
uses: game-ci/unity-test-runner@v2
47+
env:
48+
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
49+
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
50+
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
51+
with:
52+
unityVersion: ${{ matrix.unityVersion }}
53+
testMode: ${{ matrix.testMode }}
54+
projectPath: ${{ matrix.projectPath }}
55+
checkName: ${{ matrix.unityVersion }} ${{ matrix.testMode }} tests result
56+
githubToken: ${{ secrets.GITHUB_TOKEN }}
57+
coverageOptions: "generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+my.assembly.*"

.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# This .gitignore file should be placed at the root of your Unity project directory
2+
#
3+
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
4+
#
5+
/[Ll]ibrary/
6+
/[Tt]emp/
7+
/[Oo]bj/
8+
/[Bb]uild/
9+
/[Bb]uilds/
10+
/[Ll]ogs/
11+
/[Mm]emoryCaptures/
12+
13+
# Asset meta data should only be ignored when the corresponding asset is also ignored
14+
!/[Aa]ssets/**/*.meta
15+
16+
# Uncomment this line if you wish to ignore the asset store tools plugin
17+
# /[Aa]ssets/AssetStoreTools*
18+
19+
# Autogenerated Jetbrains Rider plugin
20+
[Aa]ssets/Plugins/Editor/JetBrains*
21+
22+
# Visual Studio cache directory
23+
.vs/
24+
25+
# Gradle cache directory
26+
.gradle/
27+
28+
# Autogenerated VS/MD/Consulo solution and project files
29+
ExportedObj/
30+
.consulo/
31+
*.csproj
32+
*.unityproj
33+
*.sln
34+
*.suo
35+
*.tmp
36+
*.user
37+
*.userprefs
38+
*.pidb
39+
*.booproj
40+
*.svd
41+
*.pdb
42+
*.mdb
43+
*.opendb
44+
*.VC.db
45+
46+
# Unity3D generated meta files
47+
*.pidb.meta
48+
*.pdb.meta
49+
*.mdb.meta
50+
51+
# Unity3D generated file on crash reports
52+
sysinfo.txt
53+
54+
# Builds
55+
*.apk
56+
*.unitypackage
57+
58+
# Crashlytics generated file
59+
crashlytics-build.properties
60+

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
This project adheres to [Semantic Versioning](http://semver.org/).
5+
6+
## [x.xx.x] - yyyy.mm.dd
7+
8+
### Added
9+
- add Added items here
10+
11+
### Updated
12+
- add Updated items here
13+
14+
### Fixed
15+
- add Fixed items here

CHANGELOG.md.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CODE_OF_CONDUCT.md

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8+
9+
## Our Standards
10+
11+
Examples of behavior that contributes to a positive environment for our community include:
12+
13+
* Demonstrating empathy and kindness toward other people
14+
* Being respectful of differing opinions, viewpoints, and experiences
15+
* Giving and gracefully accepting constructive feedback
16+
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17+
* Focusing on what is best not just for us as individuals, but for the overall community
18+
19+
Examples of unacceptable behavior include:
20+
21+
* The use of sexualized language or imagery, and sexual attention or advances of any kind
22+
* Trolling, insulting or derogatory comments, and personal or political attacks
23+
* Public or private harassment
24+
* Publishing others' private information, such as a physical or email address, without their explicit permission
25+
* Contacting individual members, contributors, or leaders privately, outside designated community mechanisms, without their explicit permission
26+
* Other conduct which could reasonably be considered inappropriate in a professional setting
27+
28+
## Enforcement Responsibilities
29+
30+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
31+
32+
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
33+
34+
## Scope
35+
36+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
37+
38+
## Enforcement
39+
40+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [email protected]. All complaints will be reviewed and investigated promptly and fairly.
41+
42+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
43+
44+
## Enforcement Guidelines
45+
46+
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
47+
48+
### 1. Correction
49+
50+
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
51+
52+
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
53+
54+
### 2. Warning
55+
56+
**Community Impact**: A violation through a single incident or series of actions.
57+
58+
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
59+
60+
### 3. Temporary Ban
61+
62+
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
63+
64+
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
65+
66+
### 4. Permanent Ban
67+
68+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
69+
70+
**Consequence**: A permanent ban from any sort of public interaction within the community.
71+
72+
## Attribution
73+
74+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at <https://www.contributor-covenant.org/version/2/0/code_of_conduct.html>.
75+
76+
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
77+
78+
[homepage]: https://www.contributor-covenant.org
79+
80+
For answers to common questions about this code of conduct, see the FAQ at <https://www.contributor-covenant.org/faq>. Translations are available at <https://www.contributor-covenant.org/translations>.

CODE_OF_CONDUCT.md.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)