Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
man-in-the-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MIM
man-in-the-mirror
Commits
357596d9
Commit
357596d9
authored
Nov 08, 2019
by
류지석
Committed by
16홍선우
Nov 08, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
맵에디터 조건 추가 기능
parent
7ac7f5c2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2802 additions
and
963 deletions
+2802
-963
MapEditorCanvas.prefab
Assets/Prefabs/MapEditor/MapEditorCanvas.prefab
+2758
-952
MapEditor.unity
Assets/Scenes/MapEditor.unity
+11
-1
MapEditor.cs
Assets/Scripts/MapEditor.cs
+33
-10
No files found.
Assets/Prefabs/MapEditor/MapEditorCanvas.prefab
View file @
357596d9
This source diff could not be displayed because it is too large. You can
view the blob
instead.
Assets/Scenes/MapEditor.unity
View file @
357596d9
...
...
@@ -38,7 +38,7 @@ RenderSettings:
m_ReflectionIntensity
:
1
m_CustomReflection
:
{
fileID
:
0
}
m_Sun
:
{
fileID
:
0
}
m_IndirectSpecularColor
:
{
r
:
0.18028334
,
g
:
0.225713
28
,
b
:
0.3069217
,
a
:
1
}
m_IndirectSpecularColor
:
{
r
:
0.18028334
,
g
:
0.225713
4
,
b
:
0.30692226
,
a
:
1
}
m_UseRadianceAmbientProbe
:
0
---
!u!157
&3
LightmapSettings
:
...
...
@@ -253,6 +253,16 @@ PrefabInstance:
propertyPath
:
m_LocalEulerAnglesHint.z
value
:
0
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
2028998455926151720
,
guid
:
06619682524bc5149b5c3092da0722f2
,
type
:
3
}
propertyPath
:
m_Options.m_Options.Array.size
value
:
0
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
2028998455926151720
,
guid
:
06619682524bc5149b5c3092da0722f2
,
type
:
3
}
propertyPath
:
m_Options.m_Options.Array.data[3].m_Text
value
:
Option C
objectReference
:
{
fileID
:
0
}
m_RemovedComponents
:
[]
m_SourcePrefab
:
{
fileID
:
100100000
,
guid
:
06619682524bc5149b5c3092da0722f2
,
type
:
3
}
---
!u!1001
&463381731
...
...
Assets/Scripts/MapEditor.cs
View file @
357596d9
...
...
@@ -8,45 +8,45 @@ using UnityEngine.SceneManagement;
public
class
MapEditor
:
SingletonBehaviour
<
MapEditor
>
{
public
class
o
bjectData
public
class
O
bjectData
{
public
TileMode
tag
;
public
float
xPos
,
yPos
;
public
o
bjectData
(
TileMode
_tag
,
Vector2
_pos
)
public
O
bjectData
(
TileMode
_tag
,
Vector2
_pos
)
{
tag
=
_tag
;
xPos
=
_pos
.
x
;
yPos
=
_pos
.
y
;
}
}
public
class
c
learData
public
class
C
learData
{
public
ClearType
type
;
public
int
goal
;
public
c
learData
(
ClearType
_type
,
int
_goal
)
public
C
learData
(
ClearType
_type
,
int
_goal
)
{
type
=
_type
;
goal
=
_goal
;
}
}
public
class
MapSaveData
{
public
List
<
o
bjectData
>
objects
;
public
List
<
c
learData
>
clears
;
public
List
<
O
bjectData
>
objects
;
public
List
<
C
learData
>
clears
;
public
List
<
BulletCode
>
cases
;
public
List
<
BulletCode
>
bullets
;
public
string
comments
=
null
;
public
MapSaveData
()
{
objects
=
new
List
<
o
bjectData
>();
clears
=
new
List
<
c
learData
>();
objects
=
new
List
<
O
bjectData
>();
clears
=
new
List
<
C
learData
>();
cases
=
new
List
<
BulletCode
>();
bullets
=
new
List
<
BulletCode
>();
}
public
void
AddObject
(
TileMode
_tag
,
Vector2
_pos
)
{
objects
.
Add
(
new
o
bjectData
(
_tag
,
_pos
));
objects
.
Add
(
new
O
bjectData
(
_tag
,
_pos
));
}
public
void
AddClears
(
ClearType
_type
,
int
_goal
)
{
clears
.
Add
(
new
c
learData
(
_type
,
_goal
));
clears
.
Add
(
new
C
learData
(
_type
,
_goal
));
}
}
public
Map
currentMap
;
...
...
@@ -55,6 +55,8 @@ public class MapEditor : SingletonBehaviour<MapEditor>
BulletCode
bulletMode
;
public
Text
modeSign
;
public
GameObject
startSign
,
goalSign
,
mapSizeSetter
,
saveMapSelector
,
loadMapSelector
,
mapEditorTiles
;
public
Dropdown
goalDropdown
;
public
InputField
goalInputField
;
public
Dictionary
<
Floor
,
GameObject
>
startSigns
,
goalSigns
;
public
Material
editNormalMat
;
...
...
@@ -292,6 +294,21 @@ public class MapEditor : SingletonBehaviour<MapEditor>
}
}
public
void
AddClearCondition
()
{
ClearType
c
=
(
ClearType
)
System
.
Enum
.
Parse
(
typeof
(
ClearType
),
goalDropdown
.
options
[
goalDropdown
.
value
].
text
);
int
n
=
int
.
Parse
(
goalInputField
.
text
);
if
(
n
>=
0
)
{
currentMap
.
clearConditions
.
Add
(
new
ClearCondition
(
c
,
n
));
}
}
public
void
ClearClearCondition
()
{
currentMap
.
clearConditions
.
Clear
();
}
private
void
Awake
()
{
MapManager
.
inst
.
isMapEditingOn
=
true
;
...
...
@@ -308,6 +325,12 @@ public class MapEditor : SingletonBehaviour<MapEditor>
StartMap
(
currentMap
);
SwitchMode
(
0
);
SwitchBulletMode
((
int
)
BulletCode
.
None
);
goalDropdown
.
options
.
Clear
();
foreach
(
ClearType
c
in
(
ClearType
[])
System
.
Enum
.
GetValues
(
typeof
(
ClearType
)))
{
goalDropdown
.
options
.
Add
(
new
Dropdown
.
OptionData
(
c
.
ToString
()));
}
goalDropdown
.
value
=
0
;
}
// Update is called once per frame
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment