Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
Mistrustfully committed Sep 18, 2022
0 parents commit 65ddca3
Show file tree
Hide file tree
Showing 23 changed files with 3,467 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"jsx": true,
"useJSXTextNode": true,
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.json"
},
"ignorePatterns": [
"/out"
],
"plugins": [
"@typescript-eslint",
"roblox-ts",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:roblox-ts/recommended",
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": "warn"
}
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/node_modules
/out
/include
*.tsbuildinfo
*.tgz
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true
}
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Port of https://devforum.roblox.com/t/r15-rthro-ragdolls/338580

Example Usage:
```ts
import { BuildRagdollConstraints, SetRagdollEnabled } from "@rbxts/r15-ragdoll"

BuildRagdollConstraints(character)
task.delay(10, function() {
SetRagdollEnabled(character.Humanoid, true)
})
```
Loading

0 comments on commit 65ddca3

Please sign in to comment.