initial files
This commit is contained in:
commit
9974693017
1
VRIS-prototype/.gitattributes
vendored
Normal file
1
VRIS-prototype/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
||||
VRISprototype.sdf filter=lfs diff=lfs merge=lfs -text
|
||||
5
VRIS-prototype/Config/DefaultEditor.ini
Normal file
5
VRIS-prototype/Config/DefaultEditor.ini
Normal file
@ -0,0 +1,5 @@
|
||||
[EditoronlyBP]
|
||||
bAllowClassAndBlueprintPinMatching=true
|
||||
bReplaceBlueprintWithClass=true
|
||||
bDontLoadBlueprintOutsideEditor=true
|
||||
bBlueprintIsNotBlueprintType=true
|
||||
60
VRIS-prototype/Config/DefaultEngine.ini
Normal file
60
VRIS-prototype/Config/DefaultEngine.ini
Normal file
@ -0,0 +1,60 @@
|
||||
[URL]
|
||||
[/Script/EngineSettings.GameMapsSettings]
|
||||
EditorStartupMap=/Game/StarterContent/Maps/Minimal_Default
|
||||
GameDefaultMap=/Game/StarterContent/Maps/Minimal_Default
|
||||
|
||||
[/Script/Engine.UserInterfaceSettings]
|
||||
RenderFocusRule=NavigationOnly
|
||||
DefaultCursor=None
|
||||
TextEditBeamCursor=None
|
||||
CrosshairsCursor=None
|
||||
GrabHandCursor=None
|
||||
GrabHandClosedCursor=None
|
||||
SlashedCircleCursor=None
|
||||
ApplicationScale=1.000000
|
||||
UIScaleRule=ShortestSide
|
||||
CustomScalingRuleClass=None
|
||||
UIScaleCurve=(EditorCurveData=(PreInfinityExtrap=RCCE_Constant,PostInfinityExtrap=RCCE_Constant,Keys=((Time=480.000000,Value=0.444000),(Time=720.000000,Value=0.666000),(Time=1080.000000,Value=1.000000),(Time=8640.000000,Value=8.000000))),ExternalCurve=None)
|
||||
|
||||
[/Script/Engine.RendererSettings]
|
||||
r.MobileHDR=True
|
||||
r.MobileNumDynamicPointLights=4
|
||||
r.MobileDynamicPointLightsUseStaticBranch=True
|
||||
r.AllowOcclusionQueries=True
|
||||
r.MinScreenRadiusForLights=0.030000
|
||||
r.MinScreenRadiusForDepthPrepass=0.030000
|
||||
r.PrecomputedVisibilityWarning=False
|
||||
r.TextureStreaming=True
|
||||
Compat.UseDXT5NormalMaps=False
|
||||
r.AllowStaticLighting=True
|
||||
r.NormalMapsForStaticLighting=False
|
||||
r.GenerateMeshDistanceFields=False
|
||||
r.GenerateLandscapeGIData=True
|
||||
r.TessellationAdaptivePixelsPerTriangle=48.000000
|
||||
r.SeparateTranslucency=True
|
||||
r.TranslucentSortPolicy=0
|
||||
TranslucentSortAxis=(X=0.000000,Y=-1.000000,Z=0.000000)
|
||||
r.CustomDepth=1
|
||||
r.DefaultFeature.Bloom=True
|
||||
r.DefaultFeature.AmbientOcclusion=True
|
||||
r.DefaultFeature.AmbientOcclusionStaticFraction=True
|
||||
r.DefaultFeature.AutoExposure=True
|
||||
r.DefaultFeature.MotionBlur=True
|
||||
r.DefaultFeature.LensFlare=True
|
||||
r.DefaultFeature.AntiAliasing=2
|
||||
r.EarlyZPass=3
|
||||
r.EarlyZPassMovable=False
|
||||
r.DBuffer=False
|
||||
r.ClearSceneMethod=1
|
||||
r.BasePassOutputsVelocity=False
|
||||
r.WireframeCullThreshold=5.000000
|
||||
UIScaleRule=ShortestSide
|
||||
UIScaleCurve=(EditorCurveData=(PreInfinityExtrap=RCCE_Constant,PostInfinityExtrap=RCCE_Constant,Keys=),ExternalCurve=None)
|
||||
|
||||
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
||||
TargetedHardwareClass=Desktop
|
||||
AppliedTargetedHardwareClass=Desktop
|
||||
DefaultGraphicsPerformance=Maximum
|
||||
AppliedDefaultGraphicsPerformance=Maximum
|
||||
|
||||
|
||||
6
VRIS-prototype/Config/DefaultGame.ini
Normal file
6
VRIS-prototype/Config/DefaultGame.ini
Normal file
@ -0,0 +1,6 @@
|
||||
[/Script/EngineSettings.GeneralProjectSettings]
|
||||
ProjectID=03D8975F4EA14BB07FC38BA6364CCA52
|
||||
|
||||
[StartupActions]
|
||||
bAddPacks=True
|
||||
InsertPack=(PackSource="StarterContent.upack,PackName="StarterContent")
|
||||
25
VRIS-prototype/Source/VRISprototype.Target.cs
Normal file
25
VRIS-prototype/Source/VRISprototype.Target.cs
Normal file
@ -0,0 +1,25 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
using UnrealBuildTool;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class VRISprototypeTarget : TargetRules
|
||||
{
|
||||
public VRISprototypeTarget(TargetInfo Target)
|
||||
{
|
||||
Type = TargetType.Game;
|
||||
}
|
||||
|
||||
//
|
||||
// TargetRules interface.
|
||||
//
|
||||
|
||||
public override void SetupBinaries(
|
||||
TargetInfo Target,
|
||||
ref List<UEBuildBinaryConfiguration> OutBuildBinaryConfigurations,
|
||||
ref List<string> OutExtraModuleNames
|
||||
)
|
||||
{
|
||||
OutExtraModuleNames.AddRange( new string[] { "VRISprototype" } );
|
||||
}
|
||||
}
|
||||
12
VRIS-prototype/Source/VRISprototype/ReadFile.cpp
Normal file
12
VRIS-prototype/Source/VRISprototype/ReadFile.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
#include "VRISprototype.h"
|
||||
#include "ReadFile.h"
|
||||
#include "CoreMisc.h"
|
||||
|
||||
void UReadFile::ReadFile(FString Filename, FString& Result)
|
||||
{
|
||||
FFileHelper::LoadFileToString(Result, *Filename);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
12
VRIS-prototype/Source/VRISprototype/ReadFile.h
Normal file
12
VRIS-prototype/Source/VRISprototype/ReadFile.h
Normal file
@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "Kismet/BlueprintFunctionLibrary.h"
|
||||
#include "ReadFile.generated.h"
|
||||
|
||||
UCLASS()
|
||||
class VRISPROTOTYPE_API UReadFile : public UBlueprintFunctionLibrary
|
||||
{
|
||||
GENERATED_BODY() public:
|
||||
UFUNCTION(BlueprintCallable, meta = (DisplayName = "Read File", Keywords = "Reads from a file"), Category = Utilities)
|
||||
static void ReadFile(FString Directory, FString& Value);
|
||||
};
|
||||
26
VRIS-prototype/Source/VRISprototype/VRISprototype.Build.cs
Normal file
26
VRIS-prototype/Source/VRISprototype/VRISprototype.Build.cs
Normal file
@ -0,0 +1,26 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
using UnrealBuildTool;
|
||||
|
||||
public class VRISprototype : ModuleRules
|
||||
{
|
||||
public VRISprototype(TargetInfo Target)
|
||||
{
|
||||
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });
|
||||
|
||||
PrivateDependencyModuleNames.AddRange(new string[] { });
|
||||
|
||||
// Uncomment if you are using Slate UI
|
||||
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
||||
|
||||
// Uncomment if you are using online features
|
||||
// PrivateDependencyModuleNames.Add("OnlineSubsystem");
|
||||
// if ((Target.Platform == UnrealTargetPlatform.Win32) || (Target.Platform == UnrealTargetPlatform.Win64))
|
||||
// {
|
||||
// if (UEBuildConfiguration.bCompileSteamOSS == true)
|
||||
// {
|
||||
// DynamicallyLoadedModuleNames.Add("OnlineSubsystemSteam");
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
5
VRIS-prototype/Source/VRISprototype/VRISprototype.cpp
Normal file
5
VRIS-prototype/Source/VRISprototype/VRISprototype.cpp
Normal file
@ -0,0 +1,5 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "VRISprototype.h"
|
||||
|
||||
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, VRISprototype, "VRISprototype" );
|
||||
6
VRIS-prototype/Source/VRISprototype/VRISprototype.h
Normal file
6
VRIS-prototype/Source/VRISprototype/VRISprototype.h
Normal file
@ -0,0 +1,6 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Engine.h"
|
||||
|
||||
25
VRIS-prototype/Source/VRISprototypeEditor.Target.cs
Normal file
25
VRIS-prototype/Source/VRISprototypeEditor.Target.cs
Normal file
@ -0,0 +1,25 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
using UnrealBuildTool;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class VRISprototypeEditorTarget : TargetRules
|
||||
{
|
||||
public VRISprototypeEditorTarget(TargetInfo Target)
|
||||
{
|
||||
Type = TargetType.Editor;
|
||||
}
|
||||
|
||||
//
|
||||
// TargetRules interface.
|
||||
//
|
||||
|
||||
public override void SetupBinaries(
|
||||
TargetInfo Target,
|
||||
ref List<UEBuildBinaryConfiguration> OutBuildBinaryConfigurations,
|
||||
ref List<string> OutExtraModuleNames
|
||||
)
|
||||
{
|
||||
OutExtraModuleNames.AddRange( new string[] { "VRISprototype" } );
|
||||
}
|
||||
}
|
||||
16
VRIS-prototype/VRISprototype.uproject
Normal file
16
VRIS-prototype/VRISprototype.uproject
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"FileVersion": 3,
|
||||
"EngineAssociation": "4.9",
|
||||
"Category": "",
|
||||
"Description": "",
|
||||
"Modules": [
|
||||
{
|
||||
"Name": "VRISprototype",
|
||||
"Type": "Runtime",
|
||||
"LoadingPhase": "Default",
|
||||
"AdditionalDependencies": [
|
||||
"Engine"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user