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
| ### Core Server Settings | |
| atavism.servername=Local | |
| atavism.login.bindaddress=0.0.0.0 | |
| atavism.login.bindport=5042 | |
| # | |
| ### Server host names and ports | |
| atavism.msgsvr_hostname=0.0.0.0 | |
| atavism.msgsvr_port=20377 | |
| atavism.worldmgrport=5042 |
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
| --- | |
| - name: Install Basic Tools, Initialize npm, and Configure Cloud-Init | |
| hosts: localhost | |
| become: yes | |
| connection: local | |
| vars: | |
| ansible_python_interpreter: /usr/bin/python3 | |
| script_dir: "/usr/local/code/chaos-control-plane/plugins/run-remote-ansible-playbook/" | |
| tasks: |
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
| Transform FindDeepChild(Transform parent, string name) | |
| { | |
| foreach (Transform child in parent) | |
| { | |
| if (child.name == name) | |
| { | |
| return child; | |
| } | |
| else | |
| { |
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 System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using Photon.Pun; | |
| using MoreMountains.TopDownEngine; | |
| public class CharacterMovementPhoton : CharacterMovement | |
| { | |
| private PhotonView view; |
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 System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using Photon.Pun; | |
| using MoreMountains.TopDownEngine; | |
| using System.Linq; | |
| using Unity.VisualScripting; | |
| public class LevelManagerPhoton : LevelManager | |
| { |
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
| /** | |
| * Include the PrivateDependencyModuleNames entries below in your project build target configuration: | |
| * PrivateDependencyModuleNames.AddRange(new string[] { "Json", "JsonUtilities" }); | |
| */ | |
| #include "Runtime/Online/HTTP/Public/Http.h" | |
| #include "Serialization/JsonSerializer.h" | |
| FHttpResponsePtr Response; |
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
| :: Build client | |
| RunUAT BuildCookRun -project="full_path.uproject"^ | |
| -noP4 -platform=Win64^ | |
| -clientconfig=Development -serverconfig=Development^ | |
| -cook -allmaps -build -stage^ | |
| -pak -archive -archivedirectory="Output Directory" | |
| :: Cook client | |
| RunUAT BuildCookRun -project="full_project_path_and_project_name".uproject^ | |
| -noP4 -platform=Win64^ |
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
| { | |
| "swagger": "2.0", | |
| "info": { | |
| "title": "api.paw", | |
| "version": "v0.0.0" | |
| }, | |
| "host": "10.254.0.70:30060", | |
| "schemes": [ | |
| "http" | |
| ], |
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
| #!/bin/bash | |
| # set values for certificate DNs | |
| # note: CN is set to different values in the sections below | |
| ORG="000_Test_Certificates" | |
| # set values that the commands will share | |
| VALID_DAYS=360 | |
| CA_KEY=ca.key | |
| CA_CERT=ca.crt |
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
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching |
NewerOlder