Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Mr BigSock
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gard Aleksander Furre
Mr BigSock
Commits
65c12f4a
Commit
65c12f4a
authored
2 years ago
by
Robin Halseth Sandvik
Browse files
Options
Downloads
Patches
Plain Diff
Added new variants for instanciating prefabs.
parent
c6f0c377
No related branches found
Branches containing commit
No related tags found
1 merge request
!68
Master
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MrBigsock/Assets/Code/Services/PrefabService.cs
+10
-2
10 additions, 2 deletions
MrBigsock/Assets/Code/Services/PrefabService.cs
MrBigsock/Assets/Prefabs/attack.prefab
+1
-1
1 addition, 1 deletion
MrBigsock/Assets/Prefabs/attack.prefab
with
11 additions
and
3 deletions
MrBigsock/Assets/Code/Services/PrefabService.cs
+
10
−
2
View file @
65c12f4a
...
...
@@ -41,14 +41,22 @@ namespace BigSock.Service {
public
GameObject
Instance
(
string
name
,
Vector3
?
pos
=
null
)
=>
Instance
(
_prefabs
[
_sanitize
(
name
)],
pos
);
private
GameObject
Instance
(
GameObject
obj
,
Transform
parent
)
{
private
GameObject
Instance
(
GameObject
obj
,
Transform
parent
)
{
var
res
=
MonoBehaviour
.
Instantiate
(
obj
,
parent
);
return
res
;
}
public
GameObject
Instance
(
string
name
,
Transform
parent
)
=>
Instance
(
_prefabs
[
_sanitize
(
name
)],
parent
);
public
GameObject
Instance
(
GameObject
obj
,
Vector3
position
,
Quaternion
rotation
,
Transform
parent
)
{
return
MonoBehaviour
.
Instantiate
(
obj
,
position
,
rotation
,
parent
);
}
public
GameObject
Instance
(
GameObject
obj
,
Vector3
position
,
Quaternion
rotation
)
{
return
MonoBehaviour
.
Instantiate
(
obj
,
position
,
rotation
);
}
/*
Destroy an instance.
*/
...
...
This diff is collapsed.
Click to expand it.
MrBigsock/Assets/Prefabs/attack.prefab
+
1
−
1
View file @
65c12f4a
...
...
@@ -105,7 +105,7 @@ BoxCollider2D:
m_SpriteTilingProperty
:
border
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
pivot
:
{
x
:
0.5
,
y
:
0.5
}
oldSize
:
{
x
:
1.1
25
,
y
:
0.7
5
}
oldSize
:
{
x
:
2.
25
,
y
:
1.
5
}
newSize
:
{
x
:
1
,
y
:
1
}
adaptiveTilingThreshold
:
0.5
drawMode
:
0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment