We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a1886b commit 28cdabeCopy full SHA for 28cdabe
Scripts/Widgets/WebCamWidget.cs
@@ -139,13 +139,15 @@ public WebCamTexture WebCamTexture
139
public int RequestedWidth
140
{
141
get { return m_RequestedWidth; }
142
+ set { m_RequestedWidth = value; }
143
}
144
/// <summary>
145
/// The requested height of the WebCamTexture.
146
/// </summary>
147
public int RequestedHeight
148
149
get { return m_RequestedHeight; }
150
+ set { m_RequestedHeight = value; }
151
152
153
@@ -154,6 +156,7 @@ public int RequestedHeight
154
156
public int RequestedFPS
155
157
158
get { return m_RequestedFPS; }
159
+ set { m_RequestedFPS = value; }
160
161
#endregion
162
0 commit comments