Skip to content
Snippets Groups Projects
Commit 1b7eb06c authored by Giovanni Vindiola's avatar Giovanni Vindiola :speech_balloon:
Browse files

Update Repo to reflect pixel streaming build. Update Submodule HEADs. Added WidgetSpacer Plugin.

parent 328ac25e
No related branches found
No related tags found
No related merge requests found
......@@ -92,11 +92,12 @@ Plugins/*/Intermediate/*
# Cache files for the editor to use
DerivedDataCache/*
# Plugins
Plugins/WidgetSpacer
# Packaged Builds
WindowsNoEditor/*
Windows/*
WindowsServer/*
LinuxNoEditor/*
Linux/*
LinuxServer/*
Android_ASTC/*
......
......@@ -3,7 +3,7 @@
+ExcludedAssets=/OnlineSubsystemRedpointEOS/EOSDefaultUserInterface_SignInOrCreateAccount
[EpicOnlineServices]
DedicatedServerDistributionMode=DevelopersAndPlayers
DedicatedServerDistributionMode=DevelopersOnly
DedicatedServerClientId=xyza7891ZyenCt1lRRmXK2udn78PcgTI
DedicatedServerClientSecret=Icqz1NBBDp1qbkzjMKMcyHMDiUR3gBovuWcneECy7EU
DedicatedServerPrivateKey=YQKbDcp8sIBcYAP86OB1i2r8KT3Ymajue7duQ+ByhSIOo9hUpGW8ilxe3OgVy+5AAP0y+fxQ6DCIJ1vMUxsZLw==
......
......@@ -831,5 +831,4 @@ XrApi=NativeOpenXR
!NetDriverDefinitions=ClearArray
+NetDriverDefinitions=(DefName="GameNetDriver",DriverClassName="/Script/OnlineSubsystemRedpointEOS.EOSNetDriver",DriverClassNameFallback="/Script/OnlineSubsystemUtils.IpNetDriver")
+NetDriverDefinitions=(DefName="BeaconNetDriver",DriverClassName="/Script/OnlineSubsystemRedpointEOS.EOSNetDriver",DriverClassNameFallback="/Script/OnlineSubsystemUtils.IpNetDriver")
+NetDriverDefinitions=(DefName="DemoNetDriver",DriverClassName="/Script/Engine.DemoNetDriver",DriverClassNameFallback="/Script/Engine.DemoNetDriver")
+NetDriverDefinitions=(DefName="DemoNetDriver",DriverClassName="/Script/Engine.DemoNetDriver",DriverClassNameFallback="/Script/Engine.DemoNetDriver")
\ No newline at end of file
FROM ubuntu:latest
FROM ubuntu:16.04
RUN apt-get update && \
apt-get install -y git rclone wine-stable
apt-get install -y git curl sudo bash unzip && \
sudo -v ; curl https://rclone.org/install.sh | sudo bash
# Remove unnecessary files
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Create a non-root user
RUN adduser --disabled-password --gecos '' worker
# Create a new group called "mygroup"
RUN groupadd mygroup
# Add the "worker" user to the "mygroup" group
RUN usermod -aG mygroup worker
RUN curl -L https://github.com/CesiumGS/cesium-unreal/releases/download/v1.24.0-ue5/CesiumForUnreal-51-v1.24.0.zip -o CesiumForUnreal-51-v1.24.0.zip && \
unzip /tmp/project/arnobeta/Plugins/CesiumForUnreal-51-v1.24.0.zip && \
rm -rf /tmp/project/arnobeta/Plugins/CesiumForUnreal-51-v1.24.0.zip
# Build and package our Unreal project
#WORKDIR /tmp/project
#
......
Subproject commit e13e5601eb21dabcbc0ac3f5f7056b0c63f7a045
Subproject commit 7fa63a3ef65556d4adb4b37b21e40f9ae651f105
Subproject commit 3ff2a63c1e165718ae94f39e484fe80f2208555c
Subproject commit 25b3783626b25f7747159240f432d427c63cdcd2
......@@ -36,7 +36,7 @@ public class arnocMain : ModuleRules
}
CppStandard = CppStandardVersion.Cpp17;
bEnableUndefinedIdentifierWarnings = false;
// Uncomment if you are using Slate UI
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
......
......@@ -98,7 +98,13 @@
},
{
"Name": "Reztly",
"Enabled": true
"Enabled": true,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/b101dbdbea464ce2aaec3b886822265a",
"SupportedTargetPlatforms": [
"Win64",
"Mac",
"Linux"
]
},
{
"Name": "OpenXRMsftHandInteraction",
......@@ -147,6 +153,19 @@
"Win64",
"HoloLens"
]
},
{
"Name": "UBIKSolver",
"Enabled": false
},
{
"Name": "WidgetSpacer",
"Enabled": true,
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/cfca9c210ec54c9d921c02375eda50c5"
},
{
"Name": "ModelingToolsEditorMode",
"Enabled": true
}
]
}
\ No newline at end of file
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -4,7 +4,7 @@ metadata:
name: unreal-arno-pvc
namespace: librareome
spec:
storageClassName: seaweedfs-storage-nvme
storageClassName: rook-cephfs
accessModes:
- ReadWriteMany
resources:
......
......@@ -13,6 +13,16 @@ spec:
secretKeyRef:
name: uesource-secret
key: ue-token
- name: GIT_TOKEN
valueFrom:
secretKeyRef:
name: arnocgroup-secret
key: git-token
- name: MZ_TOKEN
valueFrom:
secretKeyRef:
name: mzgroup-secret
key: mz-token
command: ["/bin/bash"]
args: ["-c", "tail -f /dev/null"]
volumeMounts:
......@@ -24,6 +34,10 @@ spec:
mountPath: /tmp/project/
- name: uesource-secret
mountPath: /secrets/uesource
- name: arnocgroup-secret
mountPath: /secrets/arnocgroup
- name: mzgroup-secret
mountPath: /secrets/mzgroup
resources:
requests:
memory: "16Gi"
......@@ -44,6 +58,12 @@ spec:
- name: uesource-secret
secret:
secretName: uesource-secret
- name: arnocgroup-secret
secret:
secretName: arnocgroup-secret
- name: mzgroup-secret
secret:
secretName: mzgroup-secret
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
......
......@@ -15,7 +15,7 @@
+ Plugins/CesiumForUnreal/**
+ Plugins/ArcGISMapsSDK/**
+ Plugins/Bridge/**
+ Plugins/WidgetSpacer/**
# Files to be synced with RClone instead of Git
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment