forked from devcat-studio/VSCodeLuaDebug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectProperties.cs
More file actions
113 lines (104 loc) · 3.1 KB
/
Copy pathProjectProperties.cs
File metadata and controls
113 lines (104 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GiderosPlayerRemote
{
class ProjectProperties
{
public ProjectProperties()
{
Clear();
}
public void Clear()
{
// graphics options
scaleMode = 0;
logicalWidth = 320;
logicalHeight = 480;
windowWidth = 0;
windowHeight = 0;
imageScales = new List<KeyValuePair<string, double>>();
orientation = 0;
fps = 60;
// iOS options
retinaDisplay = 0;
autorotation = 0;
// input options
mouseToTouch = true;
touchToMouse = true;
mouseTouchOrder = 0;
// export options
architecture = 0;
//android_template = 0;
exportMode = 0;
iosDevice = 0;
//version = "1.0";
//version_code = 1;
//ios_bundle = "com.yourdomain.";
packageName = "com.yourdomain.yourapp";
//osx_org = "GiderosMobile";
//osx_domain = "giderosmobile.com";
//osx_bundle = "com.yourdomain.";
//osx_category = 5;
//win_org = "GiderosMobile";
//win_domain = "giderosmobile.com";
//winrt_org = "GiderosMobile";
//winrt_package = "com.yourdomain.yourapp";
//html5_host = "";
//html5_mem = 256;
//encryptCode = false;
//encryptAssets = false;
//app_icon = "";
//tv_icon = "";
//splash_h_image = "";
//splash_v_image = "";
//disableSplash = false;
//backgroundColor = "#ffffff";
}
// graphics options
public int scaleMode;
public int logicalWidth;
public int logicalHeight;
public int windowWidth;
public int windowHeight;
public List<KeyValuePair<string, double>> imageScales;
public int orientation;
public int fps;
// iOS options
public int retinaDisplay;
public int autorotation;
// input options
public bool mouseToTouch;
public bool touchToMouse;
public int mouseTouchOrder;
// export options
public int architecture;
//int android_template;
public int exportMode;
public int iosDevice;
//int version_code;
//string version;
//string ios_bundle;
public string packageName;
//string osx_org;
//string osx_domain;
//string osx_bundle;
//int osx_category;
//string win_org;
//string win_domain;
//string winrt_org;
//string winrt_package;
//string html5_host;
//int html5_mem;
//string app_icon;
//string tv_icon;
//string splash_h_image;
//string splash_v_image;
//bool disableSplash;
//string backgroundColor;
//bool encryptCode;
//bool encryptAssets;
};
}