A modded EditSaber for making beat saber maps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
525 B

  1. // Fill out your copyright notice in the Description page of Project Settings.
  2. #include "BP_BPMChange.h"
  3. // Sets default values
  4. ABP_BPMChange::ABP_BPMChange()
  5. {
  6. // Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
  7. PrimaryActorTick.bCanEverTick = true;
  8. }
  9. // Called when the game starts or when spawned
  10. void ABP_BPMChange::BeginPlay()
  11. {
  12. Super::BeginPlay();
  13. }
  14. // Called every frame
  15. void ABP_BPMChange::Tick(float DeltaTime)
  16. {
  17. Super::Tick(DeltaTime);
  18. }