Skip to content
GitLab
Next
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
openmw
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
3
Snippets
Groups
Projects
Show more breadcrumbs
OpenMW
openmw
Commits
fda47a6e
Commit
fda47a6e
authored
1 year ago
by
psi29a
Browse files
Options
Downloads
Plain Diff
Merge branch 'flying-fish-straight-to-jail' into 'master'
Groundcover should ignore non-geometry Drawables Closes
#7633
See merge request
!3859
parents
744cd505
8c591a0b
No related branches found
No related tags found
Loading
Pipeline
#1176053094
canceled
1 year ago
Stage: checks
Stage: build
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
apps/openmw/mwrender/groundcover.cpp
+12
-0
12 additions, 0 deletions
apps/openmw/mwrender/groundcover.cpp
with
13 additions
and
0 deletions
CHANGELOG.md
+
1
−
0
View file @
fda47a6e
...
...
@@ -111,6 +111,7 @@
Bug #7619: Long map notes may get cut off
Bug #7630: Charm can be cast on creatures
Bug #7631: Cannot trade with/talk to Creeper or Mudcrab Merchant when they're fleeing
Bug #7633: Groundcover should ignore non-geometry Drawables
Bug #7636: Animations bug out when switching between 1st and 3rd person, while playing a scripted animation
Bug #7637: Actors can sometimes move while playing scripted animations
Bug #7639: NPCs don't use hand-to-hand if their other melee skills were damaged during combat
...
...
This diff is collapsed.
Click to expand it.
apps/openmw/mwrender/groundcover.cpp
+
12
−
0
View file @
fda47a6e
...
...
@@ -196,6 +196,18 @@ namespace MWRender
{
}
void
apply
(
osg
::
Group
&
group
)
override
{
for
(
unsigned
int
i
=
0
;
i
<
group
.
getNumChildren
();)
{
if
(
group
.
getChild
(
i
)
->
asDrawable
()
&&
!
group
.
getChild
(
i
)
->
asGeometry
())
group
.
removeChild
(
i
);
else
++
i
;
}
traverse
(
group
);
}
void
apply
(
osg
::
Geometry
&
geom
)
override
{
for
(
unsigned
int
i
=
0
;
i
<
geom
.
getNumPrimitiveSets
();
++
i
)
...
...
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