├── .gitattributes ├── .gitignore └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | Assets/Resources/** filter=lfs diff=lfs merge=lfs -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/unity 3 | # Edit at https://www.gitignore.io/?templates=unity 4 | 5 | # Jetbrain Rider Cache 6 | .idea/ 7 | Assets/Plugins/Editor/JetBrains* 8 | 9 | # VS Code Cache 10 | .vscode 11 | 12 | # Visual Studio cache directory 13 | .vs/ 14 | 15 | # The following gitignore lines are from Unity gitignore template by github 16 | # 17 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 18 | 19 | /[Ll]ibrary/ 20 | /[Tt]emp/ 21 | /[Oo]bj/ 22 | /[Bb]uild/ 23 | /[Bb]uilds/ 24 | /[Ll]ogs/ 25 | /[Mm]emoryCaptures/ 26 | 27 | # Never ignore Asset meta data 28 | !/[Aa]ssets/**/*.meta 29 | 30 | # Autogenerated VS/MD/Consulo solution and project files 31 | ExportedObj/ 32 | .consulo/ 33 | *.csproj 34 | *.unityproj 35 | *.sln 36 | *.suo 37 | *.tmp 38 | *.user 39 | *.userprefs 40 | *.pidb 41 | *.booproj 42 | *.svd 43 | *.pdb 44 | *.mdb 45 | *.opendb 46 | *.VC.db 47 | *.DotSettings 48 | 49 | # Unity3D generated meta files 50 | *.pidb.meta 51 | *.pdb.meta 52 | *.mdb.meta 53 | 54 | # Unity3D generated file on crash reports 55 | sysinfo.txt 56 | 57 | # Builds 58 | *.apk 59 | *.unitypackage 60 | bin/* 61 | 62 | # Crashlytics generated file 63 | crashlytics-build.properties 64 | 65 | # Log and screenshots 66 | *.mp4 67 | Screenshot/ 68 | 69 | 70 | /.project 71 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RaiSimUnity 2 | 3 | 4 | please download the latest version at [the raisim tech repo](https://www.github.com/raisimtech/raisimUnity) 5 | --------------------------------------------------------------------------------