Skip to content
Closed
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
4 changes: 2 additions & 2 deletions tutorials/scripting/c_sharp/c_sharp_exports.rst
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,9 @@ Export annotations are also provided for the physics and render layers defined i
[Export(PropertyHint.Layers2DRender)]
public int Layers2DRender { get; set; }
[Export(PropertyHint.Layers3DPhysics)]
public int layers3DPhysics { get; set; }
public int Layers3DPhysics { get; set; }
[Export(PropertyHint.Layers3DRender)]
public int layers3DRender { get; set; }
public int Layers3DRender { get; set; }

Using bit flags requires some understanding of bitwise operations.
If in doubt, use boolean variables instead.
Expand Down