public ValueTask set_normal(IVector3LikeCachedEntity value)
 {
     __normal = null;
     return(EventHorizonBlazorInterop.Set(
                this.___guid,
                "normal",
                value
                ));
 }
 public async ValueTask <IVector3LikeCachedEntity> get_normal()
 {
     if (__normal == null)
     {
         __normal = await EventHorizonBlazorInterop.GetClass <IVector3LikeCachedEntity>(
             this.___guid,
             "normal",
             (entity) =>
         {
             return(new IVector3LikeCachedEntity()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__normal);
 }