Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,7 @@ enum Expandable
CED.FoldoutGroup(Styles.shadowHeader,
Expandable.Shadows,
k_ExpandedState,
DrawShadowsContent),
CED.FoldoutGroup(Styles.lightCookieHeader,
Expandable.LightCookie,
k_ExpandedState,
DrawLightCookieContent)
DrawShadowsContent)
);

static Func<int> s_SetGizmosDirty = SetGizmosDirty();
Expand Down Expand Up @@ -290,6 +286,8 @@ static void DrawEmissionContent(UniversalRenderPipelineSerializedLight serialize
#endif
}
}

DrawLightCookieContent(serializedLight, owner);
}

static void DrawRenderingContent(UniversalRenderPipelineSerializedLight serializedLight, Editor owner)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,7 @@ partial class UniversalRenderPipelineLightUI
Expandable.Emission,
k_ExpandedStatePreset,
CED.Group(DrawerColor,
DrawEmissionContent)),
CED.FoldoutGroup(Styles.lightCookieHeader,
Expandable.LightCookie,
k_ExpandedState,
DrawLightCookieContent)
DrawEmissionContent))
);
}
}