Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -7,6 +7,8 @@
|
||||
<qresource prefix="/fonts">
|
||||
<file>font_awesome.otf</file>
|
||||
<file>noggit_font.ttf</file>
|
||||
<file>OpenSans-Regular.ttf</file>
|
||||
<file>OpenSans-SemiBold.ttf</file>
|
||||
</qresource>
|
||||
<qresource prefix="/">
|
||||
<file alias="icon">../media/noggit_icon.png</file>
|
||||
|
||||
@@ -13,8 +13,8 @@ using namespace noggit::Red::NodeEditor::Nodes;
|
||||
LoadImageNode::LoadImageNode()
|
||||
: LogicNodeBase()
|
||||
{
|
||||
setName("Load :: Image");
|
||||
setCaption("Load :: Image");
|
||||
setName("Image :: Load");
|
||||
setCaption("Image :: Load");
|
||||
_validation_state = NodeValidationState::Valid;
|
||||
|
||||
addPort<LogicData>(PortType::In, "Logic", true);
|
||||
|
||||
@@ -11,8 +11,8 @@ using namespace noggit::Red::NodeEditor::Nodes;
|
||||
Vector2DToXYNode::Vector2DToXYNode()
|
||||
: BaseNode()
|
||||
{
|
||||
setName("Vector :: 2DToXY");
|
||||
setCaption("Vector :: 2DToXY");
|
||||
setName("Vector :: Vector2DToXY");
|
||||
setCaption("Vector :: Vector2DToXY");
|
||||
_validation_state = NodeValidationState::Valid;
|
||||
|
||||
addPort<Vector2DData>(PortType::In, "Vector2D", true);
|
||||
|
||||
@@ -10,8 +10,8 @@ using namespace noggit::Red::NodeEditor::Nodes;
|
||||
Vector3DToXYZNode::Vector3DToXYZNode()
|
||||
: BaseNode()
|
||||
{
|
||||
setName("Vector :: 3DToXYZ");
|
||||
setCaption("Vector :: 3DToXYZ");
|
||||
setName("Vector :: Vector3DToXYZ");
|
||||
setCaption("Vector :: Vector3DToXYZ");
|
||||
_validation_state = NodeValidationState::Valid;
|
||||
|
||||
addPort<Vector3DData>(PortType::In, "Vector3D", true);
|
||||
|
||||
@@ -10,8 +10,8 @@ using namespace noggit::Red::NodeEditor::Nodes;
|
||||
Vector4DToXYZWNode::Vector4DToXYZWNode()
|
||||
: BaseNode()
|
||||
{
|
||||
setName("Vector :: 4DToXYZW");
|
||||
setCaption("Vector :: 4DToXYZW");
|
||||
setName("Vector :: Vector4DToXYZW");
|
||||
setCaption("Vector :: Vector4DToXYZW");
|
||||
_validation_state = NodeValidationState::Valid;
|
||||
|
||||
addPort<Vector4DData>(PortType::In, "Vector4D", true);
|
||||
|
||||
@@ -13,7 +13,7 @@ using QtNodes::Node;
|
||||
RewiringPointNode::RewiringPointNode()
|
||||
: BaseNode()
|
||||
{
|
||||
setName("RewiringPointNode");
|
||||
setName("RewiringPoint");
|
||||
_validation_state = NodeValidationState::Valid;
|
||||
|
||||
addPort<AnyData>(PortType::In, "", false);
|
||||
@@ -92,4 +92,3 @@ void RewiringPointNode::restore(const QJsonObject& json_obj)
|
||||
_in_ports[0].data_type.reset(TypeFactory::create(type_id));
|
||||
_in_ports[0].data_type->set_parameter_type(param_type_id);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user