Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
WidowmakerSimulator
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
15박보승
WidowmakerSimulator
Commits
9552248a
Commit
9552248a
authored
Sep 24, 2019
by
15박보승
Committed by
Merseong
Sep 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
카메라 컨트롤/간단한 플레이어 컨트롤 구현
parent
f9b94557
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
887 additions
and
59 deletions
+887
-59
SampleScene.unity
Grapplers/Assets/Scenes/SampleScene.unity
+715
-50
CameraController.cs
Grapplers/Assets/Scripts/CameraController.cs
+37
-0
CameraController.cs.meta
Grapplers/Assets/Scripts/CameraController.cs.meta
+11
-0
DistanceJoint3D.cs
Grapplers/Assets/Scripts/DistanceJoint3D.cs
+10
-3
HookBehaviour.cs
Grapplers/Assets/Scripts/HookBehaviour.cs
+48
-0
HookBehaviour.cs.meta
Grapplers/Assets/Scripts/HookBehaviour.cs.meta
+11
-0
PlayerController.cs
Grapplers/Assets/Scripts/PlayerController.cs
+51
-3
DynamicsManager.asset
Grapplers/ProjectSettings/DynamicsManager.asset
+4
-3
TagManager.asset
Grapplers/ProjectSettings/TagManager.asset
+0
-0
No files found.
Grapplers/Assets/Scenes/SampleScene.unity
View file @
9552248a
This diff is collapsed.
Click to expand it.
Grapplers/Assets/Scripts/CameraController.cs
0 → 100644
View file @
9552248a
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
CameraController
:
MonoBehaviour
{
public
Transform
target
;
[
SerializeField
]
private
float
distance
=
10.0f
;
private
float
currentX
=
0.0f
;
private
float
currentY
=
0.0f
;
private
float
sensitivityX
=
4.0f
;
private
float
sensitivityY
=
1.0f
;
private
Camera
cam
;
private
void
Start
()
{
cam
=
GetComponent
<
Camera
>();
}
private
void
Update
()
{
currentX
+=
Input
.
GetAxis
(
"Mouse X"
);
currentY
=
Mathf
.
Clamp
(
currentY
-
Input
.
GetAxis
(
"Mouse Y"
),
-
60
,
60
);
}
private
void
LateUpdate
()
{
Vector3
dir
=
new
Vector3
(
0
,
0
,
-
distance
);
Quaternion
rotation
=
Quaternion
.
Euler
(
currentY
,
currentX
,
0
);
transform
.
position
=
target
.
position
+
rotation
*
dir
;
target
.
rotation
=
Quaternion
.
Euler
(
0
,
currentX
,
0
);
transform
.
LookAt
(
target
.
position
);
}
}
Grapplers/Assets/Scripts/CameraController.cs.meta
0 → 100644
View file @
9552248a
fileFormatVersion: 2
guid: 3cff733ed1be50a42b24f5f20109ab7a
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Grapplers/Assets/Scripts/DistanceJoint3D.cs
View file @
9552248a
...
...
@@ -6,6 +6,7 @@ public class DistanceJoint3D : MonoBehaviour
{
public
Rigidbody
ConnectedRigidbody
;
public
float
distance
;
public
float
damper
=
5f
;
private
Rigidbody
rb
;
...
...
@@ -16,15 +17,21 @@ public class DistanceJoint3D : MonoBehaviour
private
void
Start
()
{
distance
=
Vector3
.
Distance
(
rb
.
position
,
ConnectedRigidbody
.
position
);
//
distance = Vector3.Distance(rb.position, ConnectedRigidbody.position);
}
private
void
FixedUpdate
()
{
var
connection
=
rb
.
position
-
ConnectedRigidbody
.
position
;
//
var distanceDiscrepancy = distance - connection.magnitude;
var
distanceDiscrepancy
=
distance
-
connection
.
magnitude
;
rb
.
velocity
=
connection
.
normalized
*
Physics
.
gravity
.
y
+
Physics
.
gravity
;
rb
.
position
+=
distanceDiscrepancy
*
connection
.
normalized
;
var
velocityTarget
=
connection
+
rb
.
velocity
;
var
projectOnConnect
=
Vector3
.
Project
(
velocityTarget
,
connection
);
rb
.
velocity
=
(
velocityTarget
-
projectOnConnect
)
/
(
1
+
damper
*
Time
.
fixedDeltaTime
);
//rb.velocity = connection.normalized * Physics.gravity.y + Physics.gravity;
}
}
Grapplers/Assets/Scripts/HookBehaviour.cs
0 → 100644
View file @
9552248a
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
HookBehaviour
:
MonoBehaviour
{
[
SerializeField
]
private
LineRenderer
lr
;
[
SerializeField
]
private
Transform
player
;
[
SerializeField
]
private
Rigidbody
rb
;
private
void
Awake
()
{
rb
=
GetComponent
<
Rigidbody
>();
gameObject
.
SetActive
(
false
);
}
private
void
Update
()
{
Debug
.
Log
(
rb
.
velocity
);
lr
.
SetPosition
(
0
,
transform
.
position
);
lr
.
SetPosition
(
1
,
player
.
position
);
}
private
void
OnCollisionEnter
(
Collision
collision
)
{
rb
.
velocity
=
Vector3
.
zero
;
rb
.
isKinematic
=
true
;
}
public
void
EnableHook
(
Vector3
velocity
)
{
lr
.
enabled
=
true
;
lr
.
SetPosition
(
0
,
transform
.
position
);
lr
.
SetPosition
(
1
,
player
.
position
);
rb
.
isKinematic
=
false
;
rb
.
velocity
=
velocity
;
}
public
void
DisableHook
()
{
lr
.
enabled
=
false
;
gameObject
.
SetActive
(
false
);
}
}
Grapplers/Assets/Scripts/HookBehaviour.cs.meta
0 → 100644
View file @
9552248a
fileFormatVersion: 2
guid: 08eccdf623a41a9438f052a4d54491df
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Grapplers/Assets/Scripts/PlayerController.cs
View file @
9552248a
...
...
@@ -2,18 +2,66 @@
using
System.Collections.Generic
;
using
UnityEngine
;
[
RequireComponent
(
typeof
(
CharacterController
))]
public
class
PlayerController
:
MonoBehaviour
{
public
float
distance
=
10.0f
;
private
CharacterController
cc
;
float
velocityY
=
0.0f
;
const
float
gravity
=
9.8f
;
public
HookBehaviour
hook
;
#if UNITY_EDITOR
private
void
OnDrawGizmos
()
{
Gizmos
.
DrawLine
(
transform
.
position
,
(
transform
.
position
-
Camera
.
main
.
transform
.
position
)
*
10
);
}
#endif
private
void
Start
()
{
cc
=
GetComponent
<
CharacterController
>();
Cursor
.
lockState
=
CursorLockMode
.
Locked
;
}
private
void
Update
()
{
if
(
Input
.
GetKey
(
KeyCode
.
A
)){
GetComponent
<
Rigidbody
>().
AddForce
(-
transform
.
right
*
100
);
float
vertical
=
Input
.
GetAxis
(
"Vertical"
);
float
horizontal
=
Input
.
GetAxis
(
"Horizontal"
);
if
(
Input
.
GetMouseButtonDown
(
1
))
{
if
(!
hook
.
gameObject
.
activeSelf
)
{
FireHook
();
}
else
ReturnHook
();
}
if
(
Input
.
GetButtonDown
(
"Jump"
)
&&
cc
.
isGrounded
)
velocityY
=
5.0f
;
if
(!
cc
.
isGrounded
)
velocityY
-=
gravity
*
Time
.
deltaTime
;
cc
.
Move
(
horizontal
*
transform
.
right
+
vertical
*
transform
.
forward
+
new
Vector3
(
0
,
velocityY
,
0
)
*
Time
.
deltaTime
);
}
private
void
LateUpdate
()
{
}
private
void
FireHook
()
{
hook
.
gameObject
.
SetActive
(
true
);
hook
.
transform
.
position
=
transform
.
position
;
hook
.
EnableHook
((
transform
.
position
-
Camera
.
main
.
transform
.
position
)
*
50
);
}
private
void
ReturnHook
()
{
hook
.
DisableHook
();
}
}
Grapplers/ProjectSettings/DynamicsManager.asset
View file @
9552248a
...
...
@@ -3,7 +3,7 @@
---
!u!55
&1
PhysicsManager
:
m_ObjectHideFlags
:
0
serializedVersion
:
1
1
serializedVersion
:
1
3
m_Gravity
:
{
x
:
0
,
y
:
-9.81
,
z
:
0
}
m_DefaultMaterial
:
{
fileID
:
0
}
m_BounceThreshold
:
2
...
...
@@ -17,11 +17,12 @@ PhysicsManager:
m_ClothInterCollisionDistance
:
0
m_ClothInterCollisionStiffness
:
0
m_ContactsGeneration
:
1
m_LayerCollisionMatrix
:
fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
fffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
m_LayerCollisionMatrix
:
fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
dfffffffe
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
m_AutoSimulation
:
1
m_AutoSyncTransforms
:
0
m_ReuseCollisionCallbacks
:
1
m_ClothInterCollisionSettingsToggle
:
0
m_ClothGravity
:
{
x
:
0
,
y
:
-9.81
,
z
:
0
}
m_ContactPairsMode
:
0
m_BroadphaseType
:
0
m_WorldBounds
:
...
...
@@ -31,4 +32,4 @@ PhysicsManager:
m_FrictionType
:
0
m_EnableEnhancedDeterminism
:
0
m_EnableUnifiedHeightmaps
:
1
m_DefaultMaxAng
lu
arSpeed
:
7
m_DefaultMaxAng
ul
arSpeed
:
7
Grapplers/ProjectSettings/TagManager.asset
View file @
9552248a
No preview for this file type
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