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
| IDENTIFICATION DIVISION. | |
| PROGRAM-ID. WEBSERVER. | |
| DATA DIVISION. | |
| WORKING-STORAGE SECTION. | |
| 01 SERVER-SOCKET PIC S9(9) COMP-5. | |
| 01 CLIENT-SOCKET PIC S9(9) COMP-5. | |
| 01 PORT PIC 9(4) VALUE 8080. | |
| 01 WS-PORT PIC 9(4) COMP-5. | |
| 01 SERVER-ADDRESS. | |
| 05 SIN-FAMILY PIC S9(4) COMP-5 VALUE 2. |
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
| using UnityEditor; | |
| public class FBXScaleFix : AssetPostprocessor | |
| { | |
| public void OnPreprocessModel() | |
| { | |
| ModelImporter modelImporter = (ModelImporter) assetImporter; | |
| modelImporter.globalScale = 1; | |
| modelImporter.addCollider = true; | |
| modelImporter.normalImportMode = ModelImporterTangentSpaceMode.Calculate; |