コード例 #1
0
    public void TestSmartItemComponentKernelUpdate()
    {
        //Arrange
        DCLBuilderInWorldEntity entity = BuilderInWorldTestHelper.CreateSmartItemEntity(entityHandler, scene, null);

        //Act
        biwBridge.UpdateSmartItemComponent(entity, scene);

        //Assert
        CheckMessageReceived();
    }
コード例 #2
0
 public void UpdateSmartItemComponentInKernel(DCLBuilderInWorldEntity entityToUpdate)
 {
     builderInWorldBridge?.UpdateSmartItemComponent(entityToUpdate, sceneToEdit);
 }
コード例 #3
0
 public void UpdateSmartItemComponentInKernel(BIWEntity entityToUpdate)
 {
     bridge?.UpdateSmartItemComponent(entityToUpdate, sceneToEdit);
 }