mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
Add a deprecation warning on text entry object actions (#7484)
This commit is contained in:
@@ -68,6 +68,12 @@ export const getExtraInstructionInformation = (type: string): ?Hint => {
|
||||
Physics2, you can't mix the behaviors).`,
|
||||
};
|
||||
}
|
||||
if (type.indexOf('TextEntryObject::') === 0) {
|
||||
return {
|
||||
kind: 'warning',
|
||||
message: t`This action is deprecated and should not be used anymore. Instead, use the "Text input" object.`,
|
||||
};
|
||||
}
|
||||
if (type.startsWith('BoundingBox')) {
|
||||
return {
|
||||
kind: 'info',
|
||||
|
Reference in New Issue
Block a user