| 63 | } |
| 64 | |
| 65 | bool TriValueBinding::OnModified( Be::Var* val ) |
| 66 | { |
| 67 | ITriReroutablePtr rp( BlueCastPtr( GetCurrentDestinationObject() ) ); |
| 68 | if( rp ) |
| 69 | { |
| 70 | rp->UnregisterBinding( this ); |
| 71 | } |
| 72 | |
| 73 | Initialize(); |
| 74 | return true; |
| 75 | } |
| 76 | |
| 77 | template <typename SrcT, typename DestT = SrcT> |
| 78 | static bool Copy( void* srcVar, void* dstVar, float, const Vector4& ) |
no test coverage detected