cocos2d-x win32 平台 编译时提示 “ui”: 不是“cocos2d::experimental”的成员

include “L1_U1_TestPlay.h”
include “cocos2d\cocos\ui\UIVideoPlayer.h”
include “cocos2d\cocos\ui\CocosGUI.h”

USING_NS_CC;

Size size = Director::getInstance()->getWinSize();

auto videoPlayer = experimental::ui::VideoPlayer::create();

videoPlayer->setPosition(Point(size.width / 2, size.height / 2));
videoPlayer->setContentSize(Size(size.width, size.height));
this->addChild(videoPlayer);
if (videoPlayer)
{
	videoPlayer->setFileName("kenan001.mp4");
	videoPlayer->play();
}

使用这个播放视频的时候,总是提示 experimental下在没有ui这个名称空间,请问一下,这个是什么原因呢?

什么版本的?
新版本的我没看过,不过之前的版本有平台判断的

#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS)

最新的那个,3.13.1这个版本,加这句话的意思是,在Android和IOS 平台执行,那在Win 32平台下面是不支持播放视频吗?