void Physics2DServerSW::shape_set_data(RID p_shape, const Variant& p_data) {

	Shape2DSW *shape = shape_owner.get(p_shape);
	ERR_FAIL_COND(!shape);
	shape->set_data(p_data);


};