| 124 | } |
| 125 | |
| 126 | bool PathPointObject::SetFromDesc(const EntityDescription& desc) { |
| 127 | bool ret = Object::SetFromDesc(desc); |
| 128 | if (ret) { |
| 129 | for (const auto& field : desc.fields) { |
| 130 | switch (field.type) { |
| 131 | case EDF_CONNECTIONS: |
| 132 | field.ReadIntVec(&connection_ids); |
| 133 | break; |
| 134 | } |
| 135 | } |
| 136 | } |
| 137 | return ret; |
| 138 | } |
| 139 | |
| 140 | bool PathPointObject::Initialize() { |
| 141 | sp.ASAddFloat("Wait", 0.0f); |
nothing calls this directly
no test coverage detected