Skip to content

Commit

Permalink
feature(cine-tools): adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
IllustrisJack committed Nov 7, 2021
1 parent 5d78329 commit 6454ef6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ext/Client/Modules/CinematicTools.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function CinematicTools:RegisterVars()
self.m_CollaborationEnabled = false
self.m_Visible = false
self.VALUE_STEP = 0.0001
self.VALUE_MIN = -100000
self.VALUE_MAX = 100000
self.VALUE_MIN = -25000
self.VALUE_MAX = 25000
end


Expand Down Expand Up @@ -221,19 +221,19 @@ function CinematicTools:CreateGUI()
self:GenericCallback("outdoorLight.sunColor.z", p_Value)
end)

DebugGUI:Range('Panoramic UV Min X', {DefValue = 0, Min = self.VALUE_MIN, Max = self.VALUE_MAX, Step = self.VALUE_STEP}, function(p_Value)
DebugGUI:Range('Panoramic UV Min X', {DefValue = 0, Min = 0, Max = 10, Step = 0.5}, function(p_Value)
self:GenericCallback("sky.panoramicUVMinX.x", p_Value)
end)

DebugGUI:Range('Panoramic UV Max X', {DefValue = 0, Min = self.VALUE_MIN, Max = self.VALUE_MAX, Step = self.VALUE_STEP}, function(p_Value)
DebugGUI:Range('Panoramic UV Max X', {DefValue = 0, Min = 0, Max = 10, Step = 0.5}, function(p_Value)
self:GenericCallback("sky.panoramicUVMaxX.x", p_Value)
end)

DebugGUI:Range('Panoramic UV Min Y', {DefValue = 0, Min = self.VALUE_MIN, Max = self.VALUE_MAX, Step = self.VALUE_STEP}, function(p_Value)
DebugGUI:Range('Panoramic UV Min Y', {DefValue = 0, Min = 0, Max = 10, Step = 0.5}, function(p_Value)
self:GenericCallback("sky.panoramicUVMinY.y", p_Value)
end)

DebugGUI:Range('Panoramic UV Max Y', {DefValue = 0, Min = self.VALUE_MIN, Max = self.VALUE_MAX, Step = self.VALUE_STEP}, function(p_Value)
DebugGUI:Range('Panoramic UV Max Y', {DefValue = 0, Min = 0, Max = 10, Step = 0.5}, function(p_Value)
self:GenericCallback("sky.panoramicUVMaxY.y", p_Value)
end)

Expand Down

0 comments on commit 6454ef6

Please sign in to comment.