0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Unreal Engine 4メモ:DataTableのFTimespan型はインポート出来ない

Last updated at Posted at 2018-02-20

これはバージョン4.17.2で確認したものです。
バージョンアップしたら対応されていると良いなぁ。

sample.h
USTRUCT(BlueprintType, DisplayName = "FTimespanを使ったデータ", Category = "データ")
struct FTimespanParam : public FTableRowBase
{
	GENERATED_USTRUCT_BODY()

	UPROPERTY(EditAnywhere, DisplayName = "記録", Category = "データ")
		FTimespan BestTime;
};

このデータはcsvを使って「BestTime」をインポートできない。理由は下記。

Timespan.cpp
bool FTimespan::ImportTextItem(const TCHAR*& Buffer, int32 PortFlags, UObject* Parent, FOutputDevice* ErrorText)
{
	// @todo gmp: implement FTimespan::ImportTextItem
	return false;
}

悲しい。パッチかプルリクエストか…。
ちなみにエクスポートはできます。

参照

フォーラム:FTimespan can't import to DataTable

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?