https://github.com/samuelasherrivello/rmc-ai
RMC Library for Open AI endpoints including Chat-GPT and Dall-E
https://github.com/samuelasherrivello/rmc-ai
ai artificial-intelligence best-practices game-development unity
Last synced: 2 months ago
JSON representation
RMC Library for Open AI endpoints including Chat-GPT and Dall-E
- Host: GitHub
- URL: https://github.com/samuelasherrivello/rmc-ai
- Owner: SamuelAsherRivello
- License: mit
- Created: 2023-04-03T14:16:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T14:55:04.000Z (almost 2 years ago)
- Last Synced: 2025-08-22T14:43:37.524Z (10 months ago)
- Topics: ai, artificial-intelligence, best-practices, game-development, unity
- Language: C#
- Homepage: https://www.samuelasherrivello.com/ai-portfolio/
- Size: 638 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/com.rmc.unity-package-template)
[](https://opensource.org/licenses/MIT)

# RMC AI
- [How To Use](#how-to-use)
- [Install](#install)
- [Via NPM](#via-npm)
- [Or Via Git URL](#or-via-git-url)
- [Optional](#optional)
- [Tests](#tests)
- [Samples](#samples)
- [Configuration](#configuration)
## How to use
RMC's AI library
Enjoy!
## Install
You can either install [Via NPM](#via-npm) or [Via Git URL](#or-via-git-url). The result will be the same.
### Via NPM
You can either use the Unity Package Manager Window (UPM) or directly edit the manifest file. The result will be the same.
**UPM**
To use the [Package Manager Window](https://docs.unity3d.com/Manual/upm-ui.html), first add a [Scoped Registry](https://docs.unity3d.com/2023.1/Documentation/Manual/upm-scoped.html), then click on the interface menu ( `Status Bar → (+) Icon → Add Package By Name ...` ).
**Manifest File**
Or to edit the `Packages/manifest.json` directly with your favorite text editor, add a scoped registry then the following line(s) to dependencies block:
```json
{
"scopedRegistries": [
{
"name": "npmjs",
"url": "https://registry.npmjs.org/",
"scopes": [
"com.rmc"
]
}
],
"dependencies": {
"com.rmc.rmc-ai": "0.8.0"
}
}
```
Package should now appear in package manager.
### Or Via Git URL
You can either use the Unity Package Manager (UPM) Window or directly edit the manifest file. The result will be the same.
**UPM**
To use the [Package Manager Window](https://docs.unity3d.com/Manual/upm-ui.html) click on the interface menu ( `Status Bar → (+) Icon → Add Package From Git Url ...` ).
**Manifest File**
Or to edit the `Packages/manifest.json` directly with your favorite text editor, add following line(s) to the dependencies block:
```json
{
"dependencies": {
"com.rmc.rmc-ai": "https://github.com/SamuelAsherRivello/rmc-ai.git"
}
}
```
## Optional
### Tests
The package can optionally be set as *testable*.
In practice this means that tests in the package will be visible in the [Unity Test Runner](https://docs.unity3d.com/2017.4/Documentation/Manual/testing-editortestsrunner.html).
Open `Packages/manifest.json` with your favorite text editor. Add following line **after** the dependencies block:
```json
{
"dependencies": {
},
"testables": [ "com.rmc.rmc-ai" ]
}
```
### Samples
Some packages include optional samples with clear use cases. To import and run the samples:
1. Open Unity
1. Complete the package installation (See above)
1. Open the [Package Manager Window](https://docs.unity3d.com/Manual/upm-ui.html)
1. Select this package
1. Select samples
1. Import
## Configuration
* `Unity Target` - [Standalone MAC/PC](https://support.unity.com/hc/en-us/articles/206336795-What-platforms-are-supported-by-Unity-)
* `Unity Version` - Any [Unity Editor](https://unity.com/download) 2021.x or higher
* `Unity Rendering` - Any [Unity Render Pipeline](https://docs.unity3d.com/Manual/universal-render-pipeline.html)
* `Unity Aspect Ratio` - Any [Unity Game View](https://docs.unity3d.com/Manual/GameView.html)
Created By
=============
- Samuel Asher Rivello
- Over 23 years XP with game development (2023)
- Over 10 years XP with Unity (2023)
Contact
=============
- Twitter - @srivello
- Resume & Portfolio - SamuelAsherRivello.com
- Source Code on Git - Github.com/SamuelAsherRivello
- LinkedIn - Linkedin.com/in/SamuelAsherRivello <--- Say Hello! :)
License
=============
Provided as-is under MIT License | Copyright © 2023 Rivello Multimedia Consulting, LLC