This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # To learn more about .editorconfig see https://aka.ms/editorconfigdocs | |
| ################################################################################ | |
| # Core EditorConfig Options # | |
| ################################################################################ | |
| root = true | |
| # 1 - Core Config | |
| ################## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| email = [email protected] | |
| name = Ankur Ranpariya | |
| signingKey = | |
| [gpg] | |
| format = openpgp | |
| program = gpg | |
| [commit] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # For line ending normalization between Unix and Windows | |
| # Auto detect text files and perform LF normalization | |
| * text=auto eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=4 | |
| # Standard to msysgit | |
| *.doc filter=lfs diff=lfs merge=lfs -text | |
| *.docx diff=astextplain | |
| *.dot filter=lfs diff=lfs merge=lfs -text | |
| *.rtf diff=astextplain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Basic Unity Project Files Settings # | |
| # ---------------------------------- # | |
| # Packed Addressable # | |
| # ------------------ # | |
| !/Assets/AddressableAssetsData/*/*.bin* | |
| # Library Data # | |
| # ------------ # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # To learn more about .editorconfig see https://aka.ms/editorconfigdocs | |
| #################################################### | |
| # Core EditorConfig Options # | |
| #################################################### | |
| root = true | |
| # All files | |
| [*] | |
| # Indentation and spacing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "comment": "ACTION REQUIRED: This file was automatically added to your project, but it\nwill not take effect until additional steps are taken to enable it. See the\nfollowing page for additional information:\n\nhttps://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/EnableConfiguration.md", | |
| "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", | |
| "settings": { | |
| "documentationRules": { | |
| "documentationCulture": "en-US", | |
| "documentInterfaces": true, | |
| "documentExposedElements": true, | |
| "documentInternalElements": true, | |
| "documentPrivateElements": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef UNITY_CG_INCLUDED | |
| #define UNITY_CG_INCLUDED | |
| #include "UnityShaderVariables.cginc" | |
| #if SHADER_API_FLASH | |
| uniform float4 unity_NPOTScale; |