Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
tome
Tales of MajEyal
Commits
113c741a
There was a problem fetching the pipeline summary.
Commit
113c741a
authored
5 years ago
by
DarkGod
Browse files
Options
Downloads
Patches
Plain Diff
safety
parent
52824953
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/engines/default/engine/Particles.lua
+8
-1
8 additions, 1 deletion
game/engines/default/engine/Particles.lua
with
8 additions
and
1 deletion
game/engines/default/engine/Particles.lua
+
8
−
1
View file @
113c741a
...
...
@@ -77,7 +77,14 @@ function _M:loaded()
if
t
.
sub_particle
then
sub_particle
=
t
.
sub_particle
end
if
t
.
sub_particle_args
then
sub_particle_args
=
t
.
sub_particle_args
end
if
t
.
can_shift
then
self
.
can_shift
=
true
end
else
error
(
"unsupported particle type: "
..
type
(
self
.
def
))
else
if
not
config
.
settings
.
cheat
then
print
(
"[PARTICLES] unsupported particle type: "
..
type
(
self
.
def
)
..
"; replacing with dummy"
)
self
.
def
=
"dummy"
return
self
:
loaded
()
else
error
(
"unsupported particle type: "
..
type
(
self
.
def
))
end
end
gl
=
gl
or
"particle"
...
...
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