Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable double in bp, update copyrighat #26

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CodeGen/gen_ue_from_ros.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021-2022 Rapyuta Robotics Co., Ltd.
# Copyright 2021-2024 Rapyuta Robotics Co., Ltd.
'''
Gen UE wrapper of ros cpp generated by `colcon build` from [.action, .msg, .src]
'''
Expand Down Expand Up @@ -125,7 +125,7 @@
# used in set UPROPERTY to allow BP access
BP_UNSUPPORTED_TYPES = [
'unsigned int',
'double',
# 'double',
'int8',
'int16',
'uint16',
Expand Down
2 changes: 1 addition & 1 deletion CodeGen/post_generate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2021-2022 Rapyuta Robotics Co., Ltd.
# Copyright 2021-2024 Rapyuta Robotics Co., Ltd.
import argparse
import os
import shutil
Expand Down
2 changes: 1 addition & 1 deletion CodeGen/templates/Action.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021 Rapyuta Robotics Co., Ltd.
// Copyright 2021-2024 Rapyuta Robotics Co., Ltd.
// This code has been autogenerated from {{data.Filename}} - do not modify

#include "Actions/ROS2{{data.UEName}}.h"
Expand Down
2 changes: 1 addition & 1 deletion CodeGen/templates/Action.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021 Rapyuta Robotics Co., Ltd.
// Copyright 2021-2024 Rapyuta Robotics Co., Ltd.
// This code has been autogenerated from {{data.Filename}} - do not modify

#pragma once
Expand Down
2 changes: 1 addition & 1 deletion CodeGen/templates/Msg.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021 Rapyuta Robotics Co., Ltd.
// Copyright 2021-2024 Rapyuta Robotics Co., Ltd.
// This code has been autogenerated from {{data.Filename}} - do not modify

#include "Msgs/ROS2{{data.UEName}}.h"
Expand Down
2 changes: 1 addition & 1 deletion CodeGen/templates/Msg.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021 Rapyuta Robotics Co., Ltd.
// Copyright 2021-2024 Rapyuta Robotics Co., Ltd.
// This code has been autogenerated from {{data.Filename}} - do not modify

#pragma once
Expand Down
2 changes: 1 addition & 1 deletion CodeGen/templates/Srv.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021 Rapyuta Robotics Co., Ltd.
// Copyright 2021-2024 Rapyuta Robotics Co., Ltd.
// This code has been autogenerated from {{data.Filename}} - do not modify

#include "Srvs/ROS2{{data.UEName}}.h"
Expand Down
2 changes: 1 addition & 1 deletion CodeGen/templates/Srv.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021 Rapyuta Robotics Co., Ltd.
// Copyright 2021-2024 Rapyuta Robotics Co., Ltd.
// This code has been autogenerated from {{data.Filename}} - do not modify

#pragma once
Expand Down