Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified XEditLib.dll
Binary file not shown.
12 changes: 11 additions & 1 deletion src/js/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = function(lib, xelib, helpers) {

// ENUMERATIONS
const loaderStates = ['lsInactive', 'lsActive', 'lsDone', 'lsError'];
const gameModes = ['gmFNV', 'gmFO3', 'gmTES4', 'gmTES5', 'gmSSE', 'gmFO4'];
const gameModes = ['gmFNV', 'gmFO3', 'gmTES4', 'gmTES5', 'gmSSE', 'gmFO4', 'gmTES5VR', 'gmFO4VR'];

applyEnums(xelib, loaderStates, 'loaderStates');
applyEnums(xelib, gameModes, 'gameModes');
Expand Down Expand Up @@ -39,6 +39,16 @@ module.exports = function(lib, xelib, helpers) {
shortName: 'Fallout4',
mode: 5,
exeName: 'Fallout4.exe'
}, {
name: 'Skyrim VR',
shortName: 'Skyrim',
mode: 6,
exeName: 'SkyrimVR.exe'
}, {
name: 'Fallout 4 VR',
shortName: 'Fallout4',
mode: 7,
exeName: 'Fallout4VR.exe'
}];

// LOADING AND SET UP METHODS
Expand Down